2008-06-09 14:22:15 -06:00
|
|
|
/*
|
|
|
|
* Mesa 3-D graphics library
|
|
|
|
*
|
|
|
|
* Copyright (C) 1999-2008 Brian Paul All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included
|
|
|
|
* in all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
2013-04-21 13:46:48 -07:00
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
|
|
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
|
|
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
|
|
* OTHER DEALINGS IN THE SOFTWARE.
|
2008-06-09 14:22:15 -06:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "glheader.h"
|
|
|
|
#include "imports.h"
|
2013-03-28 01:50:21 +01:00
|
|
|
#include "blend.h"
|
2008-06-09 14:22:15 -06:00
|
|
|
#include "bufferobj.h"
|
|
|
|
#include "context.h"
|
2011-02-18 09:53:29 -07:00
|
|
|
#include "enums.h"
|
2008-06-09 14:22:15 -06:00
|
|
|
#include "readpix.h"
|
|
|
|
#include "framebuffer.h"
|
2010-10-25 19:07:33 -06:00
|
|
|
#include "formats.h"
|
2011-11-12 11:50:31 -07:00
|
|
|
#include "format_unpack.h"
|
2008-06-09 14:22:15 -06:00
|
|
|
#include "image.h"
|
2011-01-05 23:11:54 -08:00
|
|
|
#include "mtypes.h"
|
2011-11-12 11:50:31 -07:00
|
|
|
#include "pack.h"
|
2011-02-28 18:24:35 -07:00
|
|
|
#include "pbo.h"
|
2008-06-09 14:22:15 -06:00
|
|
|
#include "state.h"
|
2012-06-25 10:52:39 -07:00
|
|
|
#include "glformats.h"
|
2012-07-18 12:54:48 -07:00
|
|
|
#include "fbobject.h"
|
2014-10-23 10:04:56 +02:00
|
|
|
#include "format_utils.h"
|
|
|
|
#include "pixeltransfer.h"
|
2008-06-09 14:22:15 -06:00
|
|
|
|
|
|
|
|
2013-03-14 13:15:54 +01:00
|
|
|
/**
|
|
|
|
* Return true if the conversion L=R+G+B is needed.
|
|
|
|
*/
|
2015-05-01 00:05:18 -07:00
|
|
|
GLboolean
|
2015-06-12 14:42:57 -07:00
|
|
|
_mesa_need_rgb_to_luminance_conversion(GLenum srcBaseFormat,
|
|
|
|
GLenum dstBaseFormat)
|
2013-03-14 13:15:54 +01:00
|
|
|
{
|
2015-06-12 14:42:57 -07:00
|
|
|
return (srcBaseFormat == GL_RG ||
|
|
|
|
srcBaseFormat == GL_RGB ||
|
|
|
|
srcBaseFormat == GL_RGBA) &&
|
|
|
|
(dstBaseFormat == GL_LUMINANCE ||
|
|
|
|
dstBaseFormat == GL_LUMINANCE_ALPHA);
|
2013-03-14 13:15:54 +01:00
|
|
|
}
|
|
|
|
|
2015-06-11 16:48:26 -07:00
|
|
|
/**
|
|
|
|
* Return true if the conversion L,I to RGB conversion is needed.
|
|
|
|
*/
|
|
|
|
GLboolean
|
|
|
|
_mesa_need_luminance_to_rgb_conversion(GLenum srcBaseFormat,
|
|
|
|
GLenum dstBaseFormat)
|
|
|
|
{
|
|
|
|
return (srcBaseFormat == GL_LUMINANCE ||
|
|
|
|
srcBaseFormat == GL_LUMINANCE_ALPHA ||
|
|
|
|
srcBaseFormat == GL_INTENSITY) &&
|
|
|
|
(dstBaseFormat == GL_GREEN ||
|
|
|
|
dstBaseFormat == GL_BLUE ||
|
|
|
|
dstBaseFormat == GL_RG ||
|
|
|
|
dstBaseFormat == GL_RGB ||
|
|
|
|
dstBaseFormat == GL_BGR ||
|
|
|
|
dstBaseFormat == GL_RGBA ||
|
|
|
|
dstBaseFormat == GL_BGRA);
|
|
|
|
}
|
2013-03-14 13:15:54 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return transfer op flags for this ReadPixels operation.
|
|
|
|
*/
|
2015-05-19 17:44:52 -07:00
|
|
|
GLbitfield
|
|
|
|
_mesa_get_readpixels_transfer_ops(const struct gl_context *ctx,
|
|
|
|
mesa_format texFormat,
|
|
|
|
GLenum format, GLenum type,
|
|
|
|
GLboolean uses_blit)
|
2013-03-14 13:15:54 +01:00
|
|
|
{
|
|
|
|
GLbitfield transferOps = ctx->_ImageTransferState;
|
2015-06-12 14:42:57 -07:00
|
|
|
GLenum srcBaseFormat = _mesa_get_format_base_format(texFormat);
|
|
|
|
GLenum dstBaseFormat = _mesa_unpack_format_to_base_format(format);
|
2013-03-14 13:15:54 +01:00
|
|
|
|
|
|
|
if (format == GL_DEPTH_COMPONENT ||
|
|
|
|
format == GL_DEPTH_STENCIL ||
|
|
|
|
format == GL_STENCIL_INDEX) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Pixel transfer ops (scale, bias, table lookup) do not apply
|
|
|
|
* to integer formats.
|
|
|
|
*/
|
|
|
|
if (_mesa_is_enum_format_integer(format)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (uses_blit) {
|
|
|
|
/* For blit-based ReadPixels packing, the clamping is done automatically
|
|
|
|
* unless the type is float. */
|
2015-03-03 15:05:16 -08:00
|
|
|
if (_mesa_get_clamp_read_color(ctx, ctx->ReadBuffer) &&
|
2018-04-27 18:04:01 +02:00
|
|
|
(type == GL_FLOAT || type == GL_HALF_FLOAT ||
|
|
|
|
type == GL_UNSIGNED_INT_10F_11F_11F_REV)) {
|
2013-03-14 13:15:54 +01:00
|
|
|
transferOps |= IMAGE_CLAMP_BIT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* For CPU-based ReadPixels packing, the clamping must always be done
|
|
|
|
* for non-float types, */
|
2015-03-03 15:05:16 -08:00
|
|
|
if (_mesa_get_clamp_read_color(ctx, ctx->ReadBuffer) ||
|
2018-04-27 18:04:01 +02:00
|
|
|
(type != GL_FLOAT && type != GL_HALF_FLOAT &&
|
|
|
|
type != GL_UNSIGNED_INT_10F_11F_11F_REV)) {
|
2013-03-14 13:15:54 +01:00
|
|
|
transferOps |= IMAGE_CLAMP_BIT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If the format is unsigned normalized, we can ignore clamping
|
|
|
|
* because the values are already in the range [0,1] so it won't
|
|
|
|
* have any effect anyway.
|
|
|
|
*/
|
|
|
|
if (_mesa_get_format_datatype(texFormat) == GL_UNSIGNED_NORMALIZED &&
|
2015-06-12 14:42:57 -07:00
|
|
|
!_mesa_need_rgb_to_luminance_conversion(srcBaseFormat, dstBaseFormat)) {
|
2013-03-14 13:15:54 +01:00
|
|
|
transferOps &= ~IMAGE_CLAMP_BIT;
|
|
|
|
}
|
|
|
|
|
|
|
|
return transferOps;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-11-12 11:50:31 -07:00
|
|
|
/**
|
2013-03-14 15:20:27 +01:00
|
|
|
* Return true if memcpy cannot be used for ReadPixels.
|
|
|
|
*
|
|
|
|
* If uses_blit is true, the function returns true if a simple 3D engine blit
|
|
|
|
* cannot be used for ReadPixels packing.
|
|
|
|
*
|
|
|
|
* NOTE: This doesn't take swizzling and format conversions between
|
|
|
|
* the readbuffer and the pixel pack buffer into account.
|
|
|
|
*/
|
|
|
|
GLboolean
|
|
|
|
_mesa_readpixels_needs_slow_path(const struct gl_context *ctx, GLenum format,
|
|
|
|
GLenum type, GLboolean uses_blit)
|
|
|
|
{
|
|
|
|
struct gl_renderbuffer *rb =
|
|
|
|
_mesa_get_read_renderbuffer_for_format(ctx, format);
|
2015-06-12 14:42:57 -07:00
|
|
|
GLenum dstBaseFormat = _mesa_unpack_format_to_base_format(format);
|
2013-03-14 15:20:27 +01:00
|
|
|
|
2015-02-20 20:18:47 -08:00
|
|
|
assert(rb);
|
2013-03-14 15:20:27 +01:00
|
|
|
|
|
|
|
/* There are different rules depending on the base format. */
|
|
|
|
switch (format) {
|
|
|
|
case GL_DEPTH_STENCIL:
|
|
|
|
return !_mesa_has_depthstencil_combined(ctx->ReadBuffer) ||
|
|
|
|
ctx->Pixel.DepthScale != 1.0f || ctx->Pixel.DepthBias != 0.0f ||
|
|
|
|
ctx->Pixel.IndexShift || ctx->Pixel.IndexOffset ||
|
|
|
|
ctx->Pixel.MapStencilFlag;
|
|
|
|
|
|
|
|
case GL_DEPTH_COMPONENT:
|
|
|
|
return ctx->Pixel.DepthScale != 1.0f || ctx->Pixel.DepthBias != 0.0f;
|
|
|
|
|
|
|
|
case GL_STENCIL_INDEX:
|
|
|
|
return ctx->Pixel.IndexShift || ctx->Pixel.IndexOffset ||
|
|
|
|
ctx->Pixel.MapStencilFlag;
|
|
|
|
|
|
|
|
default:
|
|
|
|
/* Color formats. */
|
2015-06-12 14:42:57 -07:00
|
|
|
if (_mesa_need_rgb_to_luminance_conversion(rb->_BaseFormat,
|
|
|
|
dstBaseFormat)) {
|
2013-03-14 15:20:27 +01:00
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* And finally, see if there are any transfer ops. */
|
2015-05-19 17:44:52 -07:00
|
|
|
return _mesa_get_readpixels_transfer_ops(ctx, rb->Format, format, type,
|
|
|
|
uses_blit) != 0;
|
2013-03-14 15:20:27 +01:00
|
|
|
}
|
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static GLboolean
|
|
|
|
readpixels_can_use_memcpy(const struct gl_context *ctx, GLenum format, GLenum type,
|
|
|
|
const struct gl_pixelstore_attrib *packing)
|
|
|
|
{
|
|
|
|
struct gl_renderbuffer *rb =
|
|
|
|
_mesa_get_read_renderbuffer_for_format(ctx, format);
|
|
|
|
|
2015-02-20 20:18:47 -08:00
|
|
|
assert(rb);
|
2013-03-14 15:20:27 +01:00
|
|
|
|
|
|
|
if (_mesa_readpixels_needs_slow_path(ctx, format, type, GL_FALSE)) {
|
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The base internal format and the base Mesa format must match. */
|
|
|
|
if (rb->_BaseFormat != _mesa_get_format_base_format(rb->Format)) {
|
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The Mesa format must match the input format and type. */
|
|
|
|
if (!_mesa_format_matches_format_and_type(rb->Format, format, type,
|
2015-07-31 10:26:36 -07:00
|
|
|
packing->SwapBytes, NULL)) {
|
2013-03-14 15:20:27 +01:00
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static GLboolean
|
|
|
|
readpixels_memcpy(struct gl_context *ctx,
|
|
|
|
GLint x, GLint y,
|
|
|
|
GLsizei width, GLsizei height,
|
|
|
|
GLenum format, GLenum type,
|
|
|
|
GLvoid *pixels,
|
|
|
|
const struct gl_pixelstore_attrib *packing)
|
|
|
|
{
|
|
|
|
struct gl_renderbuffer *rb =
|
|
|
|
_mesa_get_read_renderbuffer_for_format(ctx, format);
|
|
|
|
GLubyte *dst, *map;
|
2017-04-10 12:31:00 -06:00
|
|
|
int dstStride, stride, j, texelBytes, bytesPerRow;
|
2013-03-14 15:20:27 +01:00
|
|
|
|
|
|
|
/* Fail if memcpy cannot be used. */
|
|
|
|
if (!readpixels_can_use_memcpy(ctx, format, type, packing)) {
|
|
|
|
return GL_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
dstStride = _mesa_image_row_stride(packing, width, format, type);
|
|
|
|
dst = (GLubyte *) _mesa_image_address2d(packing, pixels, width, height,
|
|
|
|
format, type, 0, 0);
|
|
|
|
|
|
|
|
ctx->Driver.MapRenderbuffer(ctx, rb, x, y, width, height, GL_MAP_READ_BIT,
|
2018-07-23 10:10:54 -07:00
|
|
|
&map, &stride, ctx->ReadBuffer->FlipY);
|
2013-03-14 15:20:27 +01:00
|
|
|
if (!map) {
|
|
|
|
_mesa_error(ctx, GL_OUT_OF_MEMORY, "glReadPixels");
|
|
|
|
return GL_TRUE; /* don't bother trying the slow path */
|
|
|
|
}
|
|
|
|
|
|
|
|
texelBytes = _mesa_get_format_bytes(rb->Format);
|
2017-04-10 12:31:00 -06:00
|
|
|
bytesPerRow = texelBytes * width;
|
2013-03-14 15:20:27 +01:00
|
|
|
|
|
|
|
/* memcpy*/
|
2017-04-10 12:31:00 -06:00
|
|
|
if (dstStride == stride && dstStride == bytesPerRow) {
|
|
|
|
memcpy(dst, map, bytesPerRow * height);
|
|
|
|
} else {
|
|
|
|
for (j = 0; j < height; j++) {
|
|
|
|
memcpy(dst, map, bytesPerRow);
|
|
|
|
dst += dstStride;
|
|
|
|
map += stride;
|
|
|
|
}
|
2013-03-14 15:20:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ctx->Driver.UnmapRenderbuffer(ctx, rb);
|
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Optimized path for conversion of depth values to GL_DEPTH_COMPONENT,
|
|
|
|
* GL_UNSIGNED_INT.
|
2011-11-12 11:50:31 -07:00
|
|
|
*/
|
|
|
|
static GLboolean
|
2013-03-14 15:20:27 +01:00
|
|
|
read_uint_depth_pixels( struct gl_context *ctx,
|
2011-11-12 11:50:31 -07:00
|
|
|
GLint x, GLint y,
|
|
|
|
GLsizei width, GLsizei height,
|
|
|
|
GLenum type, GLvoid *pixels,
|
|
|
|
const struct gl_pixelstore_attrib *packing )
|
|
|
|
{
|
|
|
|
struct gl_framebuffer *fb = ctx->ReadBuffer;
|
|
|
|
struct gl_renderbuffer *rb = fb->Attachment[BUFFER_DEPTH].Renderbuffer;
|
|
|
|
GLubyte *map, *dst;
|
|
|
|
int stride, dstStride, j;
|
|
|
|
|
2015-07-12 23:15:42 -07:00
|
|
|
if (ctx->Pixel.DepthScale != 1.0F || ctx->Pixel.DepthBias != 0.0F)
|
2011-11-12 11:50:31 -07:00
|
|
|
return GL_FALSE;
|
|
|
|
|
|
|
|
if (packing->SwapBytes)
|
|
|
|
return GL_FALSE;
|
|
|
|
|
2011-11-17 13:56:30 -08:00
|
|
|
if (_mesa_get_format_datatype(rb->Format) != GL_UNSIGNED_NORMALIZED)
|
2011-11-12 11:50:31 -07:00
|
|
|
return GL_FALSE;
|
|
|
|
|
|
|
|
ctx->Driver.MapRenderbuffer(ctx, rb, x, y, width, height, GL_MAP_READ_BIT,
|
2018-07-23 10:10:54 -07:00
|
|
|
&map, &stride, fb->FlipY);
|
2011-11-12 11:50:31 -07:00
|
|
|
|
2011-11-17 17:20:05 -07:00
|
|
|
if (!map) {
|
|
|
|
_mesa_error(ctx, GL_OUT_OF_MEMORY, "glReadPixels");
|
|
|
|
return GL_TRUE; /* don't bother trying the slow path */
|
|
|
|
}
|
|
|
|
|
2011-11-12 11:50:31 -07:00
|
|
|
dstStride = _mesa_image_row_stride(packing, width, GL_DEPTH_COMPONENT, type);
|
|
|
|
dst = (GLubyte *) _mesa_image_address2d(packing, pixels, width, height,
|
|
|
|
GL_DEPTH_COMPONENT, type, 0, 0);
|
|
|
|
|
|
|
|
for (j = 0; j < height; j++) {
|
2013-03-14 15:20:27 +01:00
|
|
|
_mesa_unpack_uint_z_row(rb->Format, width, map, (GLuint *)dst);
|
2011-11-12 11:50:31 -07:00
|
|
|
|
|
|
|
map += stride;
|
|
|
|
dst += dstStride;
|
|
|
|
}
|
|
|
|
ctx->Driver.UnmapRenderbuffer(ctx, rb);
|
|
|
|
|
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Read pixels for format=GL_DEPTH_COMPONENT.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
read_depth_pixels( struct gl_context *ctx,
|
|
|
|
GLint x, GLint y,
|
|
|
|
GLsizei width, GLsizei height,
|
|
|
|
GLenum type, GLvoid *pixels,
|
|
|
|
const struct gl_pixelstore_attrib *packing )
|
|
|
|
{
|
|
|
|
struct gl_framebuffer *fb = ctx->ReadBuffer;
|
|
|
|
struct gl_renderbuffer *rb = fb->Attachment[BUFFER_DEPTH].Renderbuffer;
|
|
|
|
GLint j;
|
|
|
|
GLubyte *dst, *map;
|
|
|
|
int dstStride, stride;
|
2012-02-19 20:08:51 -07:00
|
|
|
GLfloat *depthValues;
|
2011-11-12 11:50:31 -07:00
|
|
|
|
|
|
|
if (!rb)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* clipping should have been done already */
|
2015-02-20 20:18:47 -08:00
|
|
|
assert(x >= 0);
|
|
|
|
assert(y >= 0);
|
|
|
|
assert(x + width <= (GLint) rb->Width);
|
|
|
|
assert(y + height <= (GLint) rb->Height);
|
2011-11-12 11:50:31 -07:00
|
|
|
|
2013-03-14 15:20:27 +01:00
|
|
|
if (type == GL_UNSIGNED_INT &&
|
|
|
|
read_uint_depth_pixels(ctx, x, y, width, height, type, pixels, packing)) {
|
2011-11-12 11:50:31 -07:00
|
|
|
return;
|
2013-03-14 15:20:27 +01:00
|
|
|
}
|
2011-11-12 11:50:31 -07:00
|
|
|
|
|
|
|
dstStride = _mesa_image_row_stride(packing, width, GL_DEPTH_COMPONENT, type);
|
|
|
|
dst = (GLubyte *) _mesa_image_address2d(packing, pixels, width, height,
|
|
|
|
GL_DEPTH_COMPONENT, type, 0, 0);
|
|
|
|
|
|
|
|
ctx->Driver.MapRenderbuffer(ctx, rb, x, y, width, height, GL_MAP_READ_BIT,
|
2018-07-23 10:10:54 -07:00
|
|
|
&map, &stride, fb->FlipY);
|
2011-11-17 17:20:05 -07:00
|
|
|
if (!map) {
|
|
|
|
_mesa_error(ctx, GL_OUT_OF_MEMORY, "glReadPixels");
|
|
|
|
return;
|
|
|
|
}
|
2011-11-12 11:50:31 -07:00
|
|
|
|
2012-09-03 19:44:00 -07:00
|
|
|
depthValues = malloc(width * sizeof(GLfloat));
|
2011-11-12 11:50:31 -07:00
|
|
|
|
2012-02-19 20:08:51 -07:00
|
|
|
if (depthValues) {
|
|
|
|
/* General case (slower) */
|
|
|
|
for (j = 0; j < height; j++, y++) {
|
|
|
|
_mesa_unpack_float_z_row(rb->Format, width, map, depthValues);
|
|
|
|
_mesa_pack_depth_span(ctx, width, dst, type, depthValues, packing);
|
|
|
|
|
|
|
|
dst += dstStride;
|
|
|
|
map += stride;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
_mesa_error(ctx, GL_OUT_OF_MEMORY, "glReadPixels");
|
2011-11-12 11:50:31 -07:00
|
|
|
}
|
|
|
|
|
2012-02-19 20:08:51 -07:00
|
|
|
free(depthValues);
|
|
|
|
|
2011-11-12 11:50:31 -07:00
|
|
|
ctx->Driver.UnmapRenderbuffer(ctx, rb);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Read pixels for format=GL_STENCIL_INDEX.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
read_stencil_pixels( struct gl_context *ctx,
|
|
|
|
GLint x, GLint y,
|
|
|
|
GLsizei width, GLsizei height,
|
|
|
|
GLenum type, GLvoid *pixels,
|
|
|
|
const struct gl_pixelstore_attrib *packing )
|
|
|
|
{
|
|
|
|
struct gl_framebuffer *fb = ctx->ReadBuffer;
|
|
|
|
struct gl_renderbuffer *rb = fb->Attachment[BUFFER_STENCIL].Renderbuffer;
|
|
|
|
GLint j;
|
2012-02-19 20:08:51 -07:00
|
|
|
GLubyte *map, *stencil;
|
2011-11-12 11:50:31 -07:00
|
|
|
GLint stride;
|
|
|
|
|
|
|
|
if (!rb)
|
|
|
|
return;
|
|
|
|
|
|
|
|
ctx->Driver.MapRenderbuffer(ctx, rb, x, y, width, height, GL_MAP_READ_BIT,
|
2018-07-23 10:10:54 -07:00
|
|
|
&map, &stride, fb->FlipY);
|
2011-11-17 17:20:05 -07:00
|
|
|
if (!map) {
|
|
|
|
_mesa_error(ctx, GL_OUT_OF_MEMORY, "glReadPixels");
|
|
|
|
return;
|
|
|
|
}
|
2011-11-12 11:50:31 -07:00
|
|
|
|
2012-09-03 19:44:00 -07:00
|
|
|
stencil = malloc(width * sizeof(GLubyte));
|
2011-11-12 11:50:31 -07:00
|
|
|
|
2012-02-19 20:08:51 -07:00
|
|
|
if (stencil) {
|
|
|
|
/* process image row by row */
|
|
|
|
for (j = 0; j < height; j++) {
|
|
|
|
GLvoid *dest;
|
2011-11-12 11:50:31 -07:00
|
|
|
|
2012-02-19 20:08:51 -07:00
|
|
|
_mesa_unpack_ubyte_stencil_row(rb->Format, width, map, stencil);
|
|
|
|
dest = _mesa_image_address2d(packing, pixels, width, height,
|
|
|
|
GL_STENCIL_INDEX, type, j, 0);
|
2011-11-12 11:50:31 -07:00
|
|
|
|
2012-02-19 20:08:51 -07:00
|
|
|
_mesa_pack_stencil_span(ctx, width, type, dest, stencil, packing);
|
|
|
|
|
|
|
|
map += stride;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
_mesa_error(ctx, GL_OUT_OF_MEMORY, "glReadPixels");
|
2011-11-12 11:50:31 -07:00
|
|
|
}
|
|
|
|
|
2012-02-19 20:08:51 -07:00
|
|
|
free(stencil);
|
|
|
|
|
2011-11-12 11:50:31 -07:00
|
|
|
ctx->Driver.UnmapRenderbuffer(ctx, rb);
|
|
|
|
}
|
|
|
|
|
2014-10-23 10:04:56 +02:00
|
|
|
/*
|
|
|
|
* Read R, G, B, A, RGB, L, or LA pixels.
|
2012-04-17 10:49:16 -06:00
|
|
|
*/
|
2014-10-23 10:04:56 +02:00
|
|
|
static void
|
|
|
|
read_rgba_pixels( struct gl_context *ctx,
|
|
|
|
GLint x, GLint y,
|
|
|
|
GLsizei width, GLsizei height,
|
|
|
|
GLenum format, GLenum type, GLvoid *pixels,
|
|
|
|
const struct gl_pixelstore_attrib *packing )
|
2011-11-12 11:50:31 -07:00
|
|
|
{
|
2014-10-23 10:04:56 +02:00
|
|
|
GLbitfield transferOps;
|
2015-04-30 23:36:18 -07:00
|
|
|
bool dst_is_integer, convert_rgb_to_lum, needs_rebase;
|
2014-10-23 10:04:56 +02:00
|
|
|
int dst_stride, src_stride, rb_stride;
|
|
|
|
uint32_t dst_format, src_format;
|
2011-11-12 11:50:31 -07:00
|
|
|
GLubyte *dst, *map;
|
2014-10-23 10:04:56 +02:00
|
|
|
mesa_format rb_format;
|
|
|
|
bool needs_rgba;
|
|
|
|
void *rgba, *src;
|
|
|
|
bool src_is_uint = false;
|
|
|
|
uint8_t rebase_swizzle[4];
|
|
|
|
struct gl_framebuffer *fb = ctx->ReadBuffer;
|
|
|
|
struct gl_renderbuffer *rb = fb->_ColorReadBuffer;
|
2015-06-12 14:42:57 -07:00
|
|
|
GLenum dstBaseFormat = _mesa_unpack_format_to_base_format(format);
|
2011-11-12 11:50:31 -07:00
|
|
|
|
2014-10-23 10:04:56 +02:00
|
|
|
if (!rb)
|
|
|
|
return;
|
|
|
|
|
2015-05-19 17:44:52 -07:00
|
|
|
transferOps = _mesa_get_readpixels_transfer_ops(ctx, rb->Format, format,
|
|
|
|
type, GL_FALSE);
|
2014-10-23 10:04:56 +02:00
|
|
|
/* Describe the dst format */
|
|
|
|
dst_is_integer = _mesa_is_enum_format_integer(format);
|
|
|
|
dst_stride = _mesa_image_row_stride(packing, width, format, type);
|
|
|
|
dst_format = _mesa_format_from_format_and_type(format, type);
|
2015-05-01 00:05:18 -07:00
|
|
|
convert_rgb_to_lum =
|
2015-06-12 14:42:57 -07:00
|
|
|
_mesa_need_rgb_to_luminance_conversion(rb->_BaseFormat, dstBaseFormat);
|
2011-11-12 11:50:31 -07:00
|
|
|
dst = (GLubyte *) _mesa_image_address2d(packing, pixels, width, height,
|
2014-10-23 10:04:56 +02:00
|
|
|
format, type, 0, 0);
|
2011-11-12 11:50:31 -07:00
|
|
|
|
2014-10-23 10:04:56 +02:00
|
|
|
/* Map the source render buffer */
|
2011-11-12 11:50:31 -07:00
|
|
|
ctx->Driver.MapRenderbuffer(ctx, rb, x, y, width, height, GL_MAP_READ_BIT,
|
2018-07-23 10:10:54 -07:00
|
|
|
&map, &rb_stride, fb->FlipY);
|
2011-11-17 17:20:05 -07:00
|
|
|
if (!map) {
|
|
|
|
_mesa_error(ctx, GL_OUT_OF_MEMORY, "glReadPixels");
|
2014-10-23 10:04:56 +02:00
|
|
|
return;
|
2011-11-17 17:20:05 -07:00
|
|
|
}
|
2014-10-23 10:04:56 +02:00
|
|
|
rb_format = _mesa_get_srgb_format_linear(rb->Format);
|
2011-11-12 11:50:31 -07:00
|
|
|
|
2014-10-23 10:04:56 +02:00
|
|
|
/*
|
|
|
|
* Depending on the base formats involved in the conversion we might need to
|
|
|
|
* rebase some values, so for these formats we compute a rebase swizzle.
|
|
|
|
*/
|
|
|
|
if (rb->_BaseFormat == GL_LUMINANCE || rb->_BaseFormat == GL_INTENSITY) {
|
|
|
|
needs_rebase = true;
|
|
|
|
rebase_swizzle[0] = MESA_FORMAT_SWIZZLE_X;
|
|
|
|
rebase_swizzle[1] = MESA_FORMAT_SWIZZLE_ZERO;
|
|
|
|
rebase_swizzle[2] = MESA_FORMAT_SWIZZLE_ZERO;
|
|
|
|
rebase_swizzle[3] = MESA_FORMAT_SWIZZLE_ONE;
|
|
|
|
} else if (rb->_BaseFormat == GL_LUMINANCE_ALPHA) {
|
|
|
|
needs_rebase = true;
|
|
|
|
rebase_swizzle[0] = MESA_FORMAT_SWIZZLE_X;
|
|
|
|
rebase_swizzle[1] = MESA_FORMAT_SWIZZLE_ZERO;
|
|
|
|
rebase_swizzle[2] = MESA_FORMAT_SWIZZLE_ZERO;
|
|
|
|
rebase_swizzle[3] = MESA_FORMAT_SWIZZLE_W;
|
|
|
|
} else if (_mesa_get_format_base_format(rb_format) != rb->_BaseFormat) {
|
|
|
|
needs_rebase =
|
|
|
|
_mesa_compute_rgba2base2rgba_component_mapping(rb->_BaseFormat,
|
|
|
|
rebase_swizzle);
|
|
|
|
} else {
|
|
|
|
needs_rebase = false;
|
2011-11-12 11:50:31 -07:00
|
|
|
}
|
|
|
|
|
2014-10-23 10:04:56 +02:00
|
|
|
/* Since _mesa_format_convert does not handle transferOps we need to handle
|
|
|
|
* them before we call the function. This requires to convert to RGBA float
|
|
|
|
* first so we can call _mesa_apply_rgba_transfer_ops. If the dst format is
|
|
|
|
* integer transferOps do not apply.
|
|
|
|
*
|
|
|
|
* Converting to luminance also requires converting to RGBA first, so we can
|
|
|
|
* then compute luminance values as L=R+G+B. Notice that this is different
|
|
|
|
* from GetTexImage, where we compute L=R.
|
|
|
|
*/
|
|
|
|
assert(!transferOps || (transferOps && !dst_is_integer));
|
2011-11-12 11:50:31 -07:00
|
|
|
|
2015-04-30 23:36:18 -07:00
|
|
|
needs_rgba = transferOps || convert_rgb_to_lum;
|
2014-10-23 10:04:56 +02:00
|
|
|
rgba = NULL;
|
|
|
|
if (needs_rgba) {
|
|
|
|
uint32_t rgba_format;
|
|
|
|
int rgba_stride;
|
|
|
|
bool need_convert;
|
2011-12-05 20:40:48 -07:00
|
|
|
|
2014-10-23 10:04:56 +02:00
|
|
|
/* Convert to RGBA float or int/uint depending on the type of the src */
|
2012-06-25 14:14:25 -07:00
|
|
|
if (dst_is_integer) {
|
2014-10-23 10:04:56 +02:00
|
|
|
src_is_uint = _mesa_is_format_unsigned(rb_format);
|
|
|
|
if (src_is_uint) {
|
2015-01-13 08:33:19 +01:00
|
|
|
rgba_format = RGBA32_UINT;
|
2014-10-23 10:04:56 +02:00
|
|
|
rgba_stride = width * 4 * sizeof(GLuint);
|
2012-06-25 14:14:25 -07:00
|
|
|
} else {
|
2015-01-13 08:33:19 +01:00
|
|
|
rgba_format = RGBA32_INT;
|
2014-10-23 10:04:56 +02:00
|
|
|
rgba_stride = width * 4 * sizeof(GLint);
|
2012-06-25 14:14:25 -07:00
|
|
|
}
|
2011-11-12 11:50:31 -07:00
|
|
|
} else {
|
2015-01-13 08:33:19 +01:00
|
|
|
rgba_format = RGBA32_FLOAT;
|
2014-10-23 10:04:56 +02:00
|
|
|
rgba_stride = width * 4 * sizeof(GLfloat);
|
2011-11-12 11:50:31 -07:00
|
|
|
}
|
2011-12-05 20:40:48 -07:00
|
|
|
|
2014-10-23 10:04:56 +02:00
|
|
|
/* If we are lucky and the dst format matches the RGBA format we need to
|
|
|
|
* convert to, then we can convert directly into the dst buffer and avoid
|
|
|
|
* the final conversion/copy from the rgba buffer to the dst buffer.
|
|
|
|
*/
|
2015-09-01 15:57:02 +10:00
|
|
|
if (dst_format == rgba_format &&
|
|
|
|
dst_stride == rgba_stride) {
|
2014-10-23 10:04:56 +02:00
|
|
|
need_convert = false;
|
|
|
|
rgba = dst;
|
|
|
|
} else {
|
|
|
|
need_convert = true;
|
|
|
|
rgba = malloc(height * rgba_stride);
|
|
|
|
if (!rgba) {
|
|
|
|
_mesa_error(ctx, GL_OUT_OF_MEMORY, "glReadPixels");
|
|
|
|
goto done_unmap;
|
|
|
|
}
|
|
|
|
}
|
2011-11-12 11:50:31 -07:00
|
|
|
|
2014-10-23 10:04:56 +02:00
|
|
|
/* Convert to RGBA now */
|
|
|
|
_mesa_format_convert(rgba, rgba_format, rgba_stride,
|
|
|
|
map, rb_format, rb_stride,
|
|
|
|
width, height,
|
|
|
|
needs_rebase ? rebase_swizzle : NULL);
|
|
|
|
|
|
|
|
/* Handle transfer ops if necessary */
|
|
|
|
if (transferOps)
|
|
|
|
_mesa_apply_rgba_transfer_ops(ctx, transferOps, width * height, rgba);
|
|
|
|
|
|
|
|
/* If we had to rebase, we have already taken care of that */
|
|
|
|
needs_rebase = false;
|
|
|
|
|
|
|
|
/* If we were lucky and our RGBA conversion matches the dst format, then
|
|
|
|
* we are done.
|
|
|
|
*/
|
|
|
|
if (!need_convert)
|
|
|
|
goto done_swap;
|
|
|
|
|
|
|
|
/* Otherwise, we need to convert from RGBA to dst next */
|
|
|
|
src = rgba;
|
|
|
|
src_format = rgba_format;
|
|
|
|
src_stride = rgba_stride;
|
|
|
|
} else {
|
|
|
|
/* No RGBA conversion needed, convert directly to dst */
|
|
|
|
src = map;
|
|
|
|
src_format = rb_format;
|
|
|
|
src_stride = rb_stride;
|
|
|
|
}
|
2011-11-12 11:50:31 -07:00
|
|
|
|
2014-10-23 10:04:56 +02:00
|
|
|
/* Do the conversion.
|
|
|
|
*
|
|
|
|
* If the dst format is Luminance, we need to do the conversion by computing
|
|
|
|
* L=R+G+B values.
|
|
|
|
*/
|
2015-04-30 23:36:18 -07:00
|
|
|
if (!convert_rgb_to_lum) {
|
2014-10-23 10:04:56 +02:00
|
|
|
_mesa_format_convert(dst, dst_format, dst_stride,
|
|
|
|
src, src_format, src_stride,
|
|
|
|
width, height,
|
|
|
|
needs_rebase ? rebase_swizzle : NULL);
|
|
|
|
} else if (!dst_is_integer) {
|
|
|
|
/* Compute float Luminance values from RGBA float */
|
|
|
|
int luminance_stride, luminance_bytes;
|
|
|
|
void *luminance;
|
|
|
|
uint32_t luminance_format;
|
|
|
|
|
2016-02-22 15:58:00 -07:00
|
|
|
luminance_stride = width * sizeof(GLfloat);
|
2014-10-23 10:04:56 +02:00
|
|
|
if (format == GL_LUMINANCE_ALPHA)
|
|
|
|
luminance_stride *= 2;
|
|
|
|
luminance_bytes = height * luminance_stride;
|
|
|
|
luminance = malloc(luminance_bytes);
|
|
|
|
if (!luminance) {
|
|
|
|
_mesa_error(ctx, GL_OUT_OF_MEMORY, "glReadPixels");
|
|
|
|
free(rgba);
|
|
|
|
goto done_unmap;
|
|
|
|
}
|
|
|
|
_mesa_pack_luminance_from_rgba_float(width * height, src,
|
|
|
|
luminance, format, transferOps);
|
|
|
|
|
|
|
|
/* Convert from Luminance float to dst (this will hadle type conversion
|
|
|
|
* from float to the type of dst if necessary)
|
|
|
|
*/
|
|
|
|
luminance_format = _mesa_format_from_format_and_type(format, GL_FLOAT);
|
|
|
|
_mesa_format_convert(dst, dst_format, dst_stride,
|
|
|
|
luminance, luminance_format, luminance_stride,
|
|
|
|
width, height, NULL);
|
2015-02-28 11:08:17 -08:00
|
|
|
free(luminance);
|
2014-10-23 10:04:56 +02:00
|
|
|
} else {
|
|
|
|
_mesa_pack_luminance_from_rgba_integer(width * height, src, !src_is_uint,
|
|
|
|
dst, format, type);
|
|
|
|
}
|
2011-11-12 11:50:31 -07:00
|
|
|
|
2016-05-04 06:15:37 +02:00
|
|
|
free(rgba);
|
2014-10-23 10:04:56 +02:00
|
|
|
|
|
|
|
done_swap:
|
|
|
|
/* Handle byte swapping if required */
|
|
|
|
if (packing->SwapBytes) {
|
2015-08-25 14:36:01 +10:00
|
|
|
_mesa_swap_bytes_2d_image(format, type, packing,
|
|
|
|
width, height, dst, dst);
|
2011-11-12 11:50:31 -07:00
|
|
|
}
|
|
|
|
|
2014-10-23 10:04:56 +02:00
|
|
|
done_unmap:
|
|
|
|
ctx->Driver.UnmapRenderbuffer(ctx, rb);
|
2011-11-12 11:50:31 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* For a packed depth/stencil buffer being read as depth/stencil, just memcpy the
|
|
|
|
* data (possibly swapping 8/24 vs 24/8 as we go).
|
|
|
|
*/
|
|
|
|
static GLboolean
|
|
|
|
fast_read_depth_stencil_pixels(struct gl_context *ctx,
|
|
|
|
GLint x, GLint y,
|
|
|
|
GLsizei width, GLsizei height,
|
|
|
|
GLubyte *dst, int dstStride)
|
|
|
|
{
|
|
|
|
struct gl_framebuffer *fb = ctx->ReadBuffer;
|
|
|
|
struct gl_renderbuffer *rb = fb->Attachment[BUFFER_DEPTH].Renderbuffer;
|
|
|
|
struct gl_renderbuffer *stencilRb = fb->Attachment[BUFFER_STENCIL].Renderbuffer;
|
|
|
|
GLubyte *map;
|
|
|
|
int stride, i;
|
|
|
|
|
|
|
|
if (rb != stencilRb)
|
|
|
|
return GL_FALSE;
|
|
|
|
|
2014-01-26 15:12:56 -08:00
|
|
|
if (rb->Format != MESA_FORMAT_S8_UINT_Z24_UNORM &&
|
2014-02-07 21:53:18 -08:00
|
|
|
rb->Format != MESA_FORMAT_Z24_UNORM_S8_UINT)
|
2011-11-12 11:50:31 -07:00
|
|
|
return GL_FALSE;
|
|
|
|
|
|
|
|
ctx->Driver.MapRenderbuffer(ctx, rb, x, y, width, height, GL_MAP_READ_BIT,
|
2018-07-23 10:10:54 -07:00
|
|
|
&map, &stride, fb->FlipY);
|
2011-11-17 17:20:05 -07:00
|
|
|
if (!map) {
|
|
|
|
_mesa_error(ctx, GL_OUT_OF_MEMORY, "glReadPixels");
|
|
|
|
return GL_TRUE; /* don't bother trying the slow path */
|
|
|
|
}
|
2011-11-12 11:50:31 -07:00
|
|
|
|
|
|
|
for (i = 0; i < height; i++) {
|
|
|
|
_mesa_unpack_uint_24_8_depth_stencil_row(rb->Format, width,
|
|
|
|
map, (GLuint *)dst);
|
|
|
|
map += stride;
|
|
|
|
dst += dstStride;
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx->Driver.UnmapRenderbuffer(ctx, rb);
|
|
|
|
|
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* For non-float-depth and stencil buffers being read as 24/8 depth/stencil,
|
|
|
|
* copy the integer data directly instead of converting depth to float and
|
|
|
|
* re-packing.
|
|
|
|
*/
|
|
|
|
static GLboolean
|
|
|
|
fast_read_depth_stencil_pixels_separate(struct gl_context *ctx,
|
|
|
|
GLint x, GLint y,
|
|
|
|
GLsizei width, GLsizei height,
|
|
|
|
uint32_t *dst, int dstStride)
|
|
|
|
{
|
|
|
|
struct gl_framebuffer *fb = ctx->ReadBuffer;
|
|
|
|
struct gl_renderbuffer *depthRb = fb->Attachment[BUFFER_DEPTH].Renderbuffer;
|
|
|
|
struct gl_renderbuffer *stencilRb = fb->Attachment[BUFFER_STENCIL].Renderbuffer;
|
2012-02-19 20:08:51 -07:00
|
|
|
GLubyte *depthMap, *stencilMap, *stencilVals;
|
2011-11-12 11:50:31 -07:00
|
|
|
int depthStride, stencilStride, i, j;
|
|
|
|
|
2011-11-17 13:56:30 -08:00
|
|
|
if (_mesa_get_format_datatype(depthRb->Format) != GL_UNSIGNED_NORMALIZED)
|
2011-11-12 11:50:31 -07:00
|
|
|
return GL_FALSE;
|
|
|
|
|
|
|
|
ctx->Driver.MapRenderbuffer(ctx, depthRb, x, y, width, height,
|
2018-07-23 10:10:54 -07:00
|
|
|
GL_MAP_READ_BIT, &depthMap, &depthStride, fb->FlipY);
|
2011-11-17 17:20:05 -07:00
|
|
|
if (!depthMap) {
|
|
|
|
_mesa_error(ctx, GL_OUT_OF_MEMORY, "glReadPixels");
|
|
|
|
return GL_TRUE; /* don't bother trying the slow path */
|
|
|
|
}
|
|
|
|
|
2011-11-12 11:50:31 -07:00
|
|
|
ctx->Driver.MapRenderbuffer(ctx, stencilRb, x, y, width, height,
|
2018-07-23 10:10:54 -07:00
|
|
|
GL_MAP_READ_BIT, &stencilMap, &stencilStride, fb->FlipY);
|
2011-11-17 17:20:05 -07:00
|
|
|
if (!stencilMap) {
|
|
|
|
ctx->Driver.UnmapRenderbuffer(ctx, depthRb);
|
|
|
|
_mesa_error(ctx, GL_OUT_OF_MEMORY, "glReadPixels");
|
|
|
|
return GL_TRUE; /* don't bother trying the slow path */
|
|
|
|
}
|
2011-11-12 11:50:31 -07:00
|
|
|
|
2012-09-03 19:44:00 -07:00
|
|
|
stencilVals = malloc(width * sizeof(GLubyte));
|
2011-11-12 11:50:31 -07:00
|
|
|
|
2012-02-19 20:08:51 -07:00
|
|
|
if (stencilVals) {
|
|
|
|
for (j = 0; j < height; j++) {
|
|
|
|
_mesa_unpack_uint_z_row(depthRb->Format, width, depthMap, dst);
|
|
|
|
_mesa_unpack_ubyte_stencil_row(stencilRb->Format, width,
|
|
|
|
stencilMap, stencilVals);
|
2011-11-12 11:50:31 -07:00
|
|
|
|
2012-02-19 20:08:51 -07:00
|
|
|
for (i = 0; i < width; i++) {
|
|
|
|
dst[i] = (dst[i] & 0xffffff00) | stencilVals[i];
|
|
|
|
}
|
2011-11-12 11:50:31 -07:00
|
|
|
|
2012-02-19 20:08:51 -07:00
|
|
|
depthMap += depthStride;
|
|
|
|
stencilMap += stencilStride;
|
|
|
|
dst += dstStride / 4;
|
|
|
|
}
|
2011-11-12 11:50:31 -07:00
|
|
|
}
|
2012-02-19 20:08:51 -07:00
|
|
|
else {
|
|
|
|
_mesa_error(ctx, GL_OUT_OF_MEMORY, "glReadPixels");
|
|
|
|
}
|
|
|
|
|
|
|
|
free(stencilVals);
|
2011-11-12 11:50:31 -07:00
|
|
|
|
|
|
|
ctx->Driver.UnmapRenderbuffer(ctx, depthRb);
|
|
|
|
ctx->Driver.UnmapRenderbuffer(ctx, stencilRb);
|
|
|
|
|
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
slow_read_depth_stencil_pixels_separate(struct gl_context *ctx,
|
|
|
|
GLint x, GLint y,
|
|
|
|
GLsizei width, GLsizei height,
|
|
|
|
GLenum type,
|
|
|
|
const struct gl_pixelstore_attrib *packing,
|
|
|
|
GLubyte *dst, int dstStride)
|
|
|
|
{
|
|
|
|
struct gl_framebuffer *fb = ctx->ReadBuffer;
|
|
|
|
struct gl_renderbuffer *depthRb = fb->Attachment[BUFFER_DEPTH].Renderbuffer;
|
|
|
|
struct gl_renderbuffer *stencilRb = fb->Attachment[BUFFER_STENCIL].Renderbuffer;
|
|
|
|
GLubyte *depthMap, *stencilMap;
|
|
|
|
int depthStride, stencilStride, j;
|
2012-02-19 20:08:51 -07:00
|
|
|
GLubyte *stencilVals;
|
|
|
|
GLfloat *depthVals;
|
|
|
|
|
2011-11-12 11:50:31 -07:00
|
|
|
|
2011-11-16 07:47:51 -07:00
|
|
|
/* The depth and stencil buffers might be separate, or a single buffer.
|
|
|
|
* If one buffer, only map it once.
|
|
|
|
*/
|
2011-11-12 11:50:31 -07:00
|
|
|
ctx->Driver.MapRenderbuffer(ctx, depthRb, x, y, width, height,
|
2018-07-23 10:10:54 -07:00
|
|
|
GL_MAP_READ_BIT, &depthMap, &depthStride, fb->FlipY);
|
2011-11-17 17:20:05 -07:00
|
|
|
if (!depthMap) {
|
|
|
|
_mesa_error(ctx, GL_OUT_OF_MEMORY, "glReadPixels");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-11-16 07:47:51 -07:00
|
|
|
if (stencilRb != depthRb) {
|
|
|
|
ctx->Driver.MapRenderbuffer(ctx, stencilRb, x, y, width, height,
|
|
|
|
GL_MAP_READ_BIT, &stencilMap,
|
2018-07-23 10:10:54 -07:00
|
|
|
&stencilStride, fb->FlipY);
|
2011-11-17 17:20:05 -07:00
|
|
|
if (!stencilMap) {
|
|
|
|
ctx->Driver.UnmapRenderbuffer(ctx, depthRb);
|
|
|
|
_mesa_error(ctx, GL_OUT_OF_MEMORY, "glReadPixels");
|
|
|
|
return;
|
|
|
|
}
|
2011-11-16 07:47:51 -07:00
|
|
|
}
|
2011-11-16 09:58:45 -07:00
|
|
|
else {
|
|
|
|
stencilMap = depthMap;
|
|
|
|
stencilStride = depthStride;
|
|
|
|
}
|
2011-11-12 11:50:31 -07:00
|
|
|
|
2012-09-03 19:44:00 -07:00
|
|
|
stencilVals = malloc(width * sizeof(GLubyte));
|
|
|
|
depthVals = malloc(width * sizeof(GLfloat));
|
2011-11-12 11:50:31 -07:00
|
|
|
|
2012-02-19 20:08:51 -07:00
|
|
|
if (stencilVals && depthVals) {
|
|
|
|
for (j = 0; j < height; j++) {
|
|
|
|
_mesa_unpack_float_z_row(depthRb->Format, width, depthMap, depthVals);
|
|
|
|
_mesa_unpack_ubyte_stencil_row(stencilRb->Format, width,
|
|
|
|
stencilMap, stencilVals);
|
2011-11-12 11:50:31 -07:00
|
|
|
|
2012-02-19 20:08:51 -07:00
|
|
|
_mesa_pack_depth_stencil_span(ctx, width, type, (GLuint *)dst,
|
|
|
|
depthVals, stencilVals, packing);
|
2011-11-12 11:50:31 -07:00
|
|
|
|
2012-02-19 20:08:51 -07:00
|
|
|
depthMap += depthStride;
|
|
|
|
stencilMap += stencilStride;
|
|
|
|
dst += dstStride;
|
|
|
|
}
|
2011-11-12 11:50:31 -07:00
|
|
|
}
|
2012-02-19 20:08:51 -07:00
|
|
|
else {
|
|
|
|
_mesa_error(ctx, GL_OUT_OF_MEMORY, "glReadPixels");
|
|
|
|
}
|
|
|
|
|
|
|
|
free(stencilVals);
|
|
|
|
free(depthVals);
|
2011-11-12 11:50:31 -07:00
|
|
|
|
|
|
|
ctx->Driver.UnmapRenderbuffer(ctx, depthRb);
|
2011-11-16 07:47:51 -07:00
|
|
|
if (stencilRb != depthRb) {
|
|
|
|
ctx->Driver.UnmapRenderbuffer(ctx, stencilRb);
|
|
|
|
}
|
2011-11-12 11:50:31 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Read combined depth/stencil values.
|
|
|
|
* We'll have already done error checking to be sure the expected
|
|
|
|
* depth and stencil buffers really exist.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
read_depth_stencil_pixels(struct gl_context *ctx,
|
|
|
|
GLint x, GLint y,
|
|
|
|
GLsizei width, GLsizei height,
|
|
|
|
GLenum type, GLvoid *pixels,
|
|
|
|
const struct gl_pixelstore_attrib *packing )
|
|
|
|
{
|
|
|
|
const GLboolean scaleOrBias
|
2015-07-12 23:15:42 -07:00
|
|
|
= ctx->Pixel.DepthScale != 1.0F || ctx->Pixel.DepthBias != 0.0F;
|
2011-11-12 11:50:31 -07:00
|
|
|
const GLboolean stencilTransfer = ctx->Pixel.IndexShift
|
|
|
|
|| ctx->Pixel.IndexOffset || ctx->Pixel.MapStencilFlag;
|
|
|
|
GLubyte *dst;
|
|
|
|
int dstStride;
|
|
|
|
|
|
|
|
dst = (GLubyte *) _mesa_image_address2d(packing, pixels,
|
|
|
|
width, height,
|
|
|
|
GL_DEPTH_STENCIL_EXT,
|
|
|
|
type, 0, 0);
|
|
|
|
dstStride = _mesa_image_row_stride(packing, width,
|
|
|
|
GL_DEPTH_STENCIL_EXT, type);
|
|
|
|
|
|
|
|
/* Fast 24/8 reads. */
|
|
|
|
if (type == GL_UNSIGNED_INT_24_8 &&
|
|
|
|
!scaleOrBias && !stencilTransfer && !packing->SwapBytes) {
|
|
|
|
if (fast_read_depth_stencil_pixels(ctx, x, y, width, height,
|
|
|
|
dst, dstStride))
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (fast_read_depth_stencil_pixels_separate(ctx, x, y, width, height,
|
|
|
|
(uint32_t *)dst, dstStride))
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
slow_read_depth_stencil_pixels_separate(ctx, x, y, width, height,
|
|
|
|
type, packing,
|
|
|
|
dst, dstStride);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Software fallback routine for ctx->Driver.ReadPixels().
|
|
|
|
* By time we get here, all error checking will have been done.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
_mesa_readpixels(struct gl_context *ctx,
|
|
|
|
GLint x, GLint y, GLsizei width, GLsizei height,
|
|
|
|
GLenum format, GLenum type,
|
|
|
|
const struct gl_pixelstore_attrib *packing,
|
|
|
|
GLvoid *pixels)
|
|
|
|
{
|
|
|
|
if (ctx->NewState)
|
|
|
|
_mesa_update_state(ctx);
|
|
|
|
|
2016-02-05 16:25:28 -08:00
|
|
|
pixels = _mesa_map_pbo_dest(ctx, packing, pixels);
|
2011-11-12 11:50:31 -07:00
|
|
|
|
2016-02-05 16:25:28 -08:00
|
|
|
if (pixels) {
|
|
|
|
/* Try memcpy first. */
|
|
|
|
if (readpixels_memcpy(ctx, x, y, width, height, format, type,
|
|
|
|
pixels, packing)) {
|
2016-02-05 16:25:01 -08:00
|
|
|
_mesa_unmap_pbo_dest(ctx, packing);
|
2016-02-05 16:25:28 -08:00
|
|
|
return;
|
2011-11-12 11:50:31 -07:00
|
|
|
}
|
2016-02-05 16:25:28 -08:00
|
|
|
|
|
|
|
/* Otherwise take the slow path. */
|
|
|
|
switch (format) {
|
|
|
|
case GL_STENCIL_INDEX:
|
|
|
|
read_stencil_pixels(ctx, x, y, width, height, type, pixels,
|
|
|
|
packing);
|
|
|
|
break;
|
|
|
|
case GL_DEPTH_COMPONENT:
|
|
|
|
read_depth_pixels(ctx, x, y, width, height, type, pixels,
|
|
|
|
packing);
|
|
|
|
break;
|
|
|
|
case GL_DEPTH_STENCIL_EXT:
|
|
|
|
read_depth_stencil_pixels(ctx, x, y, width, height, type, pixels,
|
|
|
|
packing);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* all other formats should be color formats */
|
|
|
|
read_rgba_pixels(ctx, x, y, width, height, format, type, pixels,
|
|
|
|
packing);
|
|
|
|
}
|
|
|
|
|
|
|
|
_mesa_unmap_pbo_dest(ctx, packing);
|
|
|
|
}
|
2011-11-12 11:50:31 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-12-28 11:24:37 -08:00
|
|
|
static GLenum
|
2018-04-06 10:57:57 +03:00
|
|
|
read_pixels_es3_error_check(struct gl_context *ctx, GLenum format, GLenum type,
|
2012-12-28 11:24:37 -08:00
|
|
|
const struct gl_renderbuffer *rb)
|
|
|
|
{
|
|
|
|
const GLenum internalFormat = rb->InternalFormat;
|
|
|
|
const GLenum data_type = _mesa_get_format_datatype(rb->Format);
|
|
|
|
GLboolean is_unsigned_int = GL_FALSE;
|
|
|
|
GLboolean is_signed_int = GL_FALSE;
|
2015-08-10 06:58:37 -04:00
|
|
|
GLboolean is_float_depth = (internalFormat == GL_DEPTH_COMPONENT32F) ||
|
|
|
|
(internalFormat == GL_DEPTH32F_STENCIL8);
|
2012-12-28 11:24:37 -08:00
|
|
|
|
|
|
|
is_unsigned_int = _mesa_is_enum_format_unsigned_int(internalFormat);
|
|
|
|
if (!is_unsigned_int) {
|
|
|
|
is_signed_int = _mesa_is_enum_format_signed_int(internalFormat);
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (format) {
|
|
|
|
case GL_RGBA:
|
2013-01-10 17:29:27 -08:00
|
|
|
if (type == GL_FLOAT && data_type == GL_FLOAT)
|
|
|
|
return GL_NO_ERROR; /* EXT_color_buffer_float */
|
2012-12-28 11:24:37 -08:00
|
|
|
if (type == GL_UNSIGNED_BYTE && data_type == GL_UNSIGNED_NORMALIZED)
|
|
|
|
return GL_NO_ERROR;
|
|
|
|
if (internalFormat == GL_RGB10_A2 &&
|
|
|
|
type == GL_UNSIGNED_INT_2_10_10_10_REV)
|
|
|
|
return GL_NO_ERROR;
|
|
|
|
if (internalFormat == GL_RGB10_A2UI && type == GL_UNSIGNED_BYTE)
|
|
|
|
return GL_NO_ERROR;
|
2018-04-06 10:57:57 +03:00
|
|
|
if (type == GL_UNSIGNED_SHORT) {
|
|
|
|
switch (internalFormat) {
|
|
|
|
case GL_R16:
|
|
|
|
case GL_RG16:
|
|
|
|
case GL_RGB16:
|
|
|
|
case GL_RGBA16:
|
|
|
|
if (_mesa_has_EXT_texture_norm16(ctx))
|
|
|
|
return GL_NO_ERROR;
|
|
|
|
}
|
|
|
|
}
|
2012-12-28 11:24:37 -08:00
|
|
|
break;
|
|
|
|
case GL_BGRA:
|
|
|
|
/* GL_EXT_read_format_bgra */
|
|
|
|
if (type == GL_UNSIGNED_BYTE ||
|
|
|
|
type == GL_UNSIGNED_SHORT_4_4_4_4_REV ||
|
|
|
|
type == GL_UNSIGNED_SHORT_1_5_5_5_REV)
|
|
|
|
return GL_NO_ERROR;
|
|
|
|
break;
|
|
|
|
case GL_RGBA_INTEGER:
|
|
|
|
if ((is_signed_int && type == GL_INT) ||
|
|
|
|
(is_unsigned_int && type == GL_UNSIGNED_INT))
|
|
|
|
return GL_NO_ERROR;
|
|
|
|
break;
|
2015-08-10 06:58:37 -04:00
|
|
|
case GL_DEPTH_STENCIL:
|
|
|
|
switch (type) {
|
|
|
|
case GL_FLOAT_32_UNSIGNED_INT_24_8_REV:
|
|
|
|
if (is_float_depth)
|
|
|
|
return GL_NO_ERROR;
|
|
|
|
break;
|
|
|
|
case GL_UNSIGNED_INT_24_8:
|
|
|
|
if (!is_float_depth)
|
|
|
|
return GL_NO_ERROR;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return GL_INVALID_ENUM;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case GL_DEPTH_COMPONENT:
|
|
|
|
switch (type) {
|
|
|
|
case GL_FLOAT:
|
|
|
|
if (is_float_depth)
|
|
|
|
return GL_NO_ERROR;
|
|
|
|
break;
|
|
|
|
case GL_UNSIGNED_SHORT:
|
2015-09-15 09:17:20 +03:00
|
|
|
case GL_UNSIGNED_INT:
|
2015-08-10 06:58:37 -04:00
|
|
|
case GL_UNSIGNED_INT_24_8:
|
|
|
|
if (!is_float_depth)
|
|
|
|
return GL_NO_ERROR;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return GL_INVALID_ENUM;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case GL_STENCIL_INDEX:
|
|
|
|
switch (type) {
|
|
|
|
case GL_UNSIGNED_BYTE:
|
|
|
|
return GL_NO_ERROR;
|
|
|
|
default:
|
|
|
|
return GL_INVALID_ENUM;
|
|
|
|
}
|
|
|
|
break;
|
2012-12-28 11:24:37 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
return GL_INVALID_OPERATION;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-07-18 17:26:34 +02:00
|
|
|
static ALWAYS_INLINE void
|
|
|
|
read_pixels(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format,
|
|
|
|
GLenum type, GLsizei bufSize, GLvoid *pixels, bool no_error)
|
2008-06-09 14:22:15 -06:00
|
|
|
{
|
2012-11-30 15:07:54 -08:00
|
|
|
GLenum err = GL_NO_ERROR;
|
2012-12-28 11:24:37 -08:00
|
|
|
struct gl_renderbuffer *rb;
|
2016-02-05 16:21:33 -08:00
|
|
|
struct gl_pixelstore_attrib clippedPacking;
|
2012-02-07 07:42:33 -07:00
|
|
|
|
2008-06-09 14:22:15 -06:00
|
|
|
GET_CURRENT_CONTEXT(ctx);
|
|
|
|
|
2013-01-16 16:20:38 -08:00
|
|
|
FLUSH_VERTICES(ctx, 0);
|
2008-06-09 14:22:15 -06:00
|
|
|
FLUSH_CURRENT(ctx, 0);
|
|
|
|
|
2011-02-18 09:53:29 -07:00
|
|
|
if (MESA_VERBOSE & VERBOSE_API)
|
|
|
|
_mesa_debug(ctx, "glReadPixels(%d, %d, %s, %s, %p)\n",
|
|
|
|
width, height,
|
2015-07-18 01:22:00 -07:00
|
|
|
_mesa_enum_to_string(format),
|
|
|
|
_mesa_enum_to_string(type),
|
2011-02-18 09:53:29 -07:00
|
|
|
pixels);
|
|
|
|
|
2017-07-18 17:26:34 +02:00
|
|
|
if (!no_error && (width < 0 || height < 0)) {
|
2008-06-09 14:22:15 -06:00
|
|
|
_mesa_error( ctx, GL_INVALID_VALUE,
|
|
|
|
"glReadPixels(width=%d height=%d)", width, height );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-12-28 11:27:04 -08:00
|
|
|
if (ctx->NewState)
|
|
|
|
_mesa_update_state(ctx);
|
|
|
|
|
2017-07-18 17:26:34 +02:00
|
|
|
if (!no_error && ctx->ReadBuffer->_Status != GL_FRAMEBUFFER_COMPLETE_EXT) {
|
2012-12-28 11:27:04 -08:00
|
|
|
_mesa_error(ctx, GL_INVALID_FRAMEBUFFER_OPERATION_EXT,
|
|
|
|
"glReadPixels(incomplete framebuffer)" );
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-12-28 11:24:37 -08:00
|
|
|
rb = _mesa_get_read_renderbuffer_for_format(ctx, format);
|
2017-07-18 17:26:34 +02:00
|
|
|
if (!no_error) {
|
|
|
|
if (rb == NULL) {
|
|
|
|
_mesa_error(ctx, GL_INVALID_OPERATION,
|
|
|
|
"glReadPixels(read buffer)");
|
|
|
|
return;
|
|
|
|
}
|
2012-12-28 11:24:37 -08:00
|
|
|
|
2017-07-18 17:26:34 +02:00
|
|
|
/* OpenGL ES 1.x and OpenGL ES 2.0 impose additional restrictions on the
|
|
|
|
* combinations of format and type that can be used.
|
|
|
|
*
|
|
|
|
* Technically, only two combinations are actually allowed:
|
|
|
|
* GL_RGBA/GL_UNSIGNED_BYTE, and some implementation-specific internal
|
|
|
|
* preferred combination. This code doesn't know what that preferred
|
|
|
|
* combination is, and Mesa can handle anything valid. Just work instead.
|
|
|
|
*/
|
|
|
|
if (_mesa_is_gles(ctx)) {
|
|
|
|
if (ctx->API == API_OPENGLES2 &&
|
|
|
|
_mesa_is_color_format(format) &&
|
|
|
|
_mesa_get_color_read_format(ctx, NULL, "glReadPixels") == format &&
|
|
|
|
_mesa_get_color_read_type(ctx, NULL, "glReadPixels") == type) {
|
|
|
|
err = GL_NO_ERROR;
|
|
|
|
} else if (ctx->Version < 30) {
|
|
|
|
err = _mesa_es_error_check_format_and_type(ctx, format, type, 2);
|
|
|
|
if (err == GL_NO_ERROR) {
|
|
|
|
if (type == GL_FLOAT || type == GL_HALF_FLOAT_OES) {
|
|
|
|
err = GL_INVALID_OPERATION;
|
|
|
|
}
|
2012-11-30 15:07:54 -08:00
|
|
|
}
|
2017-07-18 17:26:34 +02:00
|
|
|
} else {
|
2018-04-06 10:57:57 +03:00
|
|
|
err = read_pixels_es3_error_check(ctx, format, type, rb);
|
2017-07-18 17:26:34 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (err != GL_NO_ERROR) {
|
|
|
|
_mesa_error(ctx, err, "glReadPixels(invalid format %s and/or type %s)",
|
|
|
|
_mesa_enum_to_string(format),
|
|
|
|
_mesa_enum_to_string(type));
|
|
|
|
return;
|
2012-07-27 12:24:24 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-18 17:26:34 +02:00
|
|
|
err = _mesa_error_check_format_and_type(ctx, format, type);
|
2012-07-27 12:24:24 -07:00
|
|
|
if (err != GL_NO_ERROR) {
|
|
|
|
_mesa_error(ctx, err, "glReadPixels(invalid format %s and/or type %s)",
|
2015-07-18 01:22:00 -07:00
|
|
|
_mesa_enum_to_string(format),
|
|
|
|
_mesa_enum_to_string(type));
|
2012-07-27 12:24:24 -07:00
|
|
|
return;
|
|
|
|
}
|
2008-06-09 14:22:15 -06:00
|
|
|
|
2017-07-18 17:26:34 +02:00
|
|
|
if (_mesa_is_user_fbo(ctx->ReadBuffer) &&
|
|
|
|
ctx->ReadBuffer->Visual.samples > 0) {
|
|
|
|
_mesa_error(ctx, GL_INVALID_OPERATION, "glReadPixels(multisample FBO)");
|
|
|
|
return;
|
|
|
|
}
|
2012-11-13 13:39:37 -08:00
|
|
|
|
2017-07-18 17:26:34 +02:00
|
|
|
if (!_mesa_source_buffer_exists(ctx, format)) {
|
|
|
|
_mesa_error(ctx, GL_INVALID_OPERATION, "glReadPixels(no readbuffer)");
|
2010-10-25 19:07:33 -06:00
|
|
|
return;
|
|
|
|
}
|
2017-07-18 17:26:34 +02:00
|
|
|
|
|
|
|
/* Check that the destination format and source buffer are both
|
|
|
|
* integer-valued or both non-integer-valued.
|
|
|
|
*/
|
|
|
|
if (ctx->Extensions.EXT_texture_integer && _mesa_is_color_format(format)) {
|
|
|
|
const struct gl_renderbuffer *rb = ctx->ReadBuffer->_ColorReadBuffer;
|
|
|
|
const GLboolean srcInteger = _mesa_is_format_integer_color(rb->Format);
|
|
|
|
const GLboolean dstInteger = _mesa_is_enum_format_integer(format);
|
|
|
|
if (dstInteger != srcInteger) {
|
|
|
|
_mesa_error(ctx, GL_INVALID_OPERATION,
|
|
|
|
"glReadPixels(integer / non-integer format mismatch");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2010-10-25 19:07:33 -06:00
|
|
|
}
|
|
|
|
|
2016-02-05 16:21:33 -08:00
|
|
|
/* Do all needed clipping here, so that we can forget about it later */
|
|
|
|
clippedPacking = ctx->Pack;
|
|
|
|
if (!_mesa_clip_readpixels(ctx, &x, &y, &width, &height, &clippedPacking))
|
2009-04-02 13:05:55 -06:00
|
|
|
return; /* nothing to do */
|
|
|
|
|
2017-07-18 17:26:34 +02:00
|
|
|
if (!no_error) {
|
|
|
|
if (!_mesa_validate_pbo_access(2, &ctx->Pack, width, height, 1,
|
|
|
|
format, type, bufSize, pixels)) {
|
|
|
|
if (_mesa_is_bufferobj(ctx->Pack.BufferObj)) {
|
|
|
|
_mesa_error(ctx, GL_INVALID_OPERATION,
|
|
|
|
"glReadPixels(out of bounds PBO access)");
|
|
|
|
} else {
|
|
|
|
_mesa_error(ctx, GL_INVALID_OPERATION,
|
|
|
|
"glReadnPixelsARB(out of bounds access:"
|
|
|
|
" bufSize (%d) is too small)", bufSize);
|
|
|
|
}
|
|
|
|
return;
|
2008-06-09 14:22:15 -06:00
|
|
|
}
|
|
|
|
|
2017-07-18 17:26:34 +02:00
|
|
|
if (_mesa_is_bufferobj(ctx->Pack.BufferObj) &&
|
|
|
|
_mesa_check_disallowed_mapping(ctx->Pack.BufferObj)) {
|
|
|
|
/* buffer is mapped - that's an error */
|
|
|
|
_mesa_error(ctx, GL_INVALID_OPERATION, "glReadPixels(PBO is mapped)");
|
|
|
|
return;
|
|
|
|
}
|
2008-06-09 14:22:15 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
ctx->Driver.ReadPixels(ctx, x, y, width, height,
|
2016-02-05 16:21:33 -08:00
|
|
|
format, type, &clippedPacking, pixels);
|
2008-06-09 14:22:15 -06:00
|
|
|
}
|
2011-04-26 14:54:41 -06:00
|
|
|
|
2017-07-18 17:30:54 +02:00
|
|
|
void GLAPIENTRY
|
|
|
|
_mesa_ReadnPixelsARB_no_error(GLint x, GLint y, GLsizei width, GLsizei height,
|
|
|
|
GLenum format, GLenum type, GLsizei bufSize,
|
|
|
|
GLvoid *pixels)
|
|
|
|
{
|
|
|
|
read_pixels(x, y, width, height, format, type, bufSize, pixels, true);
|
|
|
|
}
|
|
|
|
|
2011-04-26 14:54:41 -06:00
|
|
|
void GLAPIENTRY
|
2017-07-18 17:26:34 +02:00
|
|
|
_mesa_ReadnPixelsARB(GLint x, GLint y, GLsizei width, GLsizei height,
|
|
|
|
GLenum format, GLenum type, GLsizei bufSize,
|
|
|
|
GLvoid *pixels)
|
|
|
|
{
|
|
|
|
read_pixels(x, y, width, height, format, type, bufSize, pixels, false);
|
|
|
|
}
|
|
|
|
|
2017-07-18 17:30:54 +02:00
|
|
|
void GLAPIENTRY
|
|
|
|
_mesa_ReadPixels_no_error(GLint x, GLint y, GLsizei width, GLsizei height,
|
|
|
|
GLenum format, GLenum type, GLvoid *pixels)
|
|
|
|
{
|
|
|
|
_mesa_ReadnPixelsARB_no_error(x, y, width, height, format, type, INT_MAX,
|
|
|
|
pixels);
|
|
|
|
}
|
|
|
|
|
2017-07-18 17:26:34 +02:00
|
|
|
void GLAPIENTRY
|
|
|
|
_mesa_ReadPixels(GLint x, GLint y, GLsizei width, GLsizei height,
|
|
|
|
GLenum format, GLenum type, GLvoid *pixels)
|
2011-04-26 14:54:41 -06:00
|
|
|
{
|
|
|
|
_mesa_ReadnPixelsARB(x, y, width, height, format, type, INT_MAX, pixels);
|
|
|
|
}
|