Lines Matching refs:stencilVals
688 GLubyte *depthMap, *stencilMap, *stencilVals; in fast_read_depth_stencil_pixels_separate() local
709 stencilVals = malloc(width * sizeof(GLubyte)); in fast_read_depth_stencil_pixels_separate()
711 if (stencilVals) { in fast_read_depth_stencil_pixels_separate()
715 stencilMap, stencilVals); in fast_read_depth_stencil_pixels_separate()
718 dst[i] = (dst[i] & 0xffffff00) | stencilVals[i]; in fast_read_depth_stencil_pixels_separate()
730 free(stencilVals); in fast_read_depth_stencil_pixels_separate()
751 GLubyte *stencilVals; in slow_read_depth_stencil_pixels_separate() local
780 stencilVals = malloc(width * sizeof(GLubyte)); in slow_read_depth_stencil_pixels_separate()
783 if (stencilVals && depthVals) { in slow_read_depth_stencil_pixels_separate()
787 stencilMap, stencilVals); in slow_read_depth_stencil_pixels_separate()
790 depthVals, stencilVals, packing); in slow_read_depth_stencil_pixels_separate()
801 free(stencilVals); in slow_read_depth_stencil_pixels_separate()