Lines Matching refs:stencilVals
696 GLubyte *depthMap, *stencilMap, *stencilVals; in fast_read_depth_stencil_pixels_separate() local
717 stencilVals = malloc(width * sizeof(GLubyte)); in fast_read_depth_stencil_pixels_separate()
719 if (stencilVals) { in fast_read_depth_stencil_pixels_separate()
723 stencilMap, stencilVals); in fast_read_depth_stencil_pixels_separate()
726 dst[i] = (dst[i] & 0xffffff00) | stencilVals[i]; in fast_read_depth_stencil_pixels_separate()
738 free(stencilVals); in fast_read_depth_stencil_pixels_separate()
759 GLubyte *stencilVals; in slow_read_depth_stencil_pixels_separate() local
788 stencilVals = malloc(width * sizeof(GLubyte)); in slow_read_depth_stencil_pixels_separate()
791 if (stencilVals && depthVals) { in slow_read_depth_stencil_pixels_separate()
795 stencilMap, stencilVals); in slow_read_depth_stencil_pixels_separate()
798 depthVals, stencilVals, packing); in slow_read_depth_stencil_pixels_separate()
809 free(stencilVals); in slow_read_depth_stencil_pixels_separate()