Lines Matching refs:pixels
57 GLenum type, GLvoid *pixels, in fast_read_depth_pixels() argument
87 dst = (GLubyte *) _mesa_image_address2d(packing, pixels, width, height, in fast_read_depth_pixels()
113 GLenum type, GLvoid *pixels, in read_depth_pixels() argument
132 if (fast_read_depth_pixels(ctx, x, y, width, height, type, pixels, packing)) in read_depth_pixels()
136 dst = (GLubyte *) _mesa_image_address2d(packing, pixels, width, height, in read_depth_pixels()
175 GLenum type, GLvoid *pixels, in read_stencil_pixels() argument
202 dest = _mesa_image_address2d(packing, pixels, width, height, in read_stencil_pixels()
229 GLvoid *pixels, in fast_read_rgba_pixels_memcpy() argument
266 dst = (GLubyte *) _mesa_image_address2d(packing, pixels, width, height, in fast_read_rgba_pixels_memcpy()
322 GLvoid *pixels, in slow_read_rgba_pixels() argument
335 dst = (GLubyte *) _mesa_image_address2d(packing, pixels, width, height, in slow_read_rgba_pixels()
385 GLenum format, GLenum type, GLvoid *pixels, in read_rgba_pixels() argument
402 format, type, pixels, packing, in read_rgba_pixels()
408 format, type, pixels, packing, transferOps); in read_rgba_pixels()
600 GLenum type, GLvoid *pixels, in read_depth_stencil_pixels() argument
610 dst = (GLubyte *) _mesa_image_address2d(packing, pixels, in read_depth_stencil_pixels()
645 GLvoid *pixels) in _mesa_readpixels() argument
655 pixels = _mesa_map_pbo_dest(ctx, &clippedPacking, pixels); in _mesa_readpixels()
657 if (pixels) { in _mesa_readpixels()
660 read_stencil_pixels(ctx, x, y, width, height, type, pixels, in _mesa_readpixels()
664 read_depth_pixels(ctx, x, y, width, height, type, pixels, in _mesa_readpixels()
668 read_depth_stencil_pixels(ctx, x, y, width, height, type, pixels, in _mesa_readpixels()
673 read_rgba_pixels(ctx, x, y, width, height, format, type, pixels, in _mesa_readpixels()
686 GLvoid *pixels ) in _mesa_ReadnPixelsARB() argument
700 pixels); in _mesa_ReadnPixelsARB()
781 format, type, bufSize, pixels)) { in _mesa_ReadnPixelsARB()
801 format, type, &ctx->Pack, pixels); in _mesa_ReadnPixelsARB()
806 GLenum format, GLenum type, GLvoid *pixels ) in _mesa_ReadPixels() argument
808 _mesa_ReadnPixelsARB(x, y, width, height, format, type, INT_MAX, pixels); in _mesa_ReadPixels()