2008-06-09 14:22:15 -06:00
|
|
|
/*
|
|
|
|
* Mesa 3-D graphics library
|
|
|
|
* Version: 7.1
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* BRIAN PAUL 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "glheader.h"
|
|
|
|
#include "imports.h"
|
|
|
|
#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"
|
2008-06-09 14:22:15 -06:00
|
|
|
|
|
|
|
|
2011-11-12 11:50:31 -07:00
|
|
|
/**
|
|
|
|
* Tries to implement glReadPixels() of GL_DEPTH_COMPONENT using memcpy of the
|
|
|
|
* mapping.
|
|
|
|
*/
|
|
|
|
static GLboolean
|
|
|
|
fast_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;
|
|
|
|
GLubyte *map, *dst;
|
|
|
|
int stride, dstStride, j;
|
|
|
|
|
|
|
|
if (ctx->Pixel.DepthScale != 1.0 || ctx->Pixel.DepthBias != 0.0)
|
|
|
|
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;
|
|
|
|
|
|
|
|
if (!((type == GL_UNSIGNED_SHORT && rb->Format == MESA_FORMAT_Z16) ||
|
|
|
|
type == GL_UNSIGNED_INT))
|
|
|
|
return GL_FALSE;
|
|
|
|
|
|
|
|
ctx->Driver.MapRenderbuffer(ctx, rb, x, y, width, height, GL_MAP_READ_BIT,
|
|
|
|
&map, &stride);
|
|
|
|
|
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++) {
|
|
|
|
if (type == GL_UNSIGNED_INT) {
|
|
|
|
_mesa_unpack_uint_z_row(rb->Format, width, map, (GLuint *)dst);
|
|
|
|
} else {
|
|
|
|
ASSERT(type == GL_UNSIGNED_SHORT && rb->Format == MESA_FORMAT_Z16);
|
|
|
|
memcpy(dst, map, width * 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
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 */
|
|
|
|
ASSERT(x >= 0);
|
|
|
|
ASSERT(y >= 0);
|
|
|
|
ASSERT(x + width <= (GLint) rb->Width);
|
|
|
|
ASSERT(y + height <= (GLint) rb->Height);
|
|
|
|
|
|
|
|
if (fast_read_depth_pixels(ctx, x, y, width, height, type, pixels, packing))
|
|
|
|
return;
|
|
|
|
|
|
|
|
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,
|
|
|
|
&map, &stride);
|
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,
|
|
|
|
&map, &stride);
|
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);
|
|
|
|
}
|
|
|
|
|
2012-04-17 10:49:16 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Try to do glReadPixels of RGBA data using a simple memcpy or swizzle.
|
|
|
|
* \return GL_TRUE if successful, GL_FALSE otherwise (use the slow path)
|
|
|
|
*/
|
2011-11-12 11:50:31 -07:00
|
|
|
static GLboolean
|
|
|
|
fast_read_rgba_pixels_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,
|
|
|
|
GLbitfield transferOps )
|
|
|
|
{
|
|
|
|
struct gl_renderbuffer *rb = ctx->ReadBuffer->_ColorReadBuffer;
|
|
|
|
GLubyte *dst, *map;
|
|
|
|
int dstStride, stride, j, texelBytes;
|
2012-04-17 10:49:16 -06:00
|
|
|
GLboolean swizzle_rb = GL_FALSE, copy_xrgb = GL_FALSE;
|
|
|
|
|
|
|
|
/* XXX we could check for other swizzle/special cases here as needed */
|
|
|
|
if (rb->Format == MESA_FORMAT_RGBA8888_REV &&
|
|
|
|
format == GL_BGRA &&
|
|
|
|
type == GL_UNSIGNED_INT_8_8_8_8_REV &&
|
|
|
|
!ctx->Pack.SwapBytes) {
|
|
|
|
swizzle_rb = GL_TRUE;
|
|
|
|
}
|
|
|
|
else if (rb->Format == MESA_FORMAT_XRGB8888 &&
|
|
|
|
format == GL_BGRA &&
|
|
|
|
type == GL_UNSIGNED_INT_8_8_8_8_REV &&
|
|
|
|
!ctx->Pack.SwapBytes) {
|
|
|
|
copy_xrgb = GL_TRUE;
|
|
|
|
}
|
|
|
|
else if (!_mesa_format_matches_format_and_type(rb->Format, format, type,
|
|
|
|
ctx->Pack.SwapBytes))
|
2011-11-12 11:50:31 -07:00
|
|
|
return GL_FALSE;
|
|
|
|
|
2012-02-26 01:33:40 +00:00
|
|
|
/* If the format is unsigned normalized then 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(rb->Format) == GL_UNSIGNED_NORMALIZED)
|
|
|
|
transferOps &= ~IMAGE_CLAMP_BIT;
|
|
|
|
|
|
|
|
if (transferOps)
|
|
|
|
return GL_FALSE;
|
|
|
|
|
2011-11-12 11:50:31 -07:00
|
|
|
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,
|
|
|
|
&map, &stride);
|
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
|
|
|
|
|
|
|
texelBytes = _mesa_get_format_bytes(rb->Format);
|
2012-04-17 10:49:16 -06:00
|
|
|
|
|
|
|
if (swizzle_rb) {
|
|
|
|
/* swap R/B */
|
|
|
|
for (j = 0; j < height; j++) {
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < width; i++) {
|
|
|
|
GLuint *dst4 = (GLuint *) dst, *map4 = (GLuint *) map;
|
|
|
|
GLuint pixel = map4[i];
|
|
|
|
dst4[i] = (pixel & 0xff00ff00)
|
|
|
|
| ((pixel & 0x00ff0000) >> 16)
|
|
|
|
| ((pixel & 0x000000ff) << 16);
|
|
|
|
}
|
|
|
|
dst += dstStride;
|
|
|
|
map += stride;
|
|
|
|
}
|
|
|
|
} else if (copy_xrgb) {
|
|
|
|
/* convert xrgb -> argb */
|
|
|
|
for (j = 0; j < height; j++) {
|
|
|
|
GLuint *dst4 = (GLuint *) dst, *map4 = (GLuint *) map;
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < width; i++) {
|
|
|
|
dst4[i] = map4[i] | 0xff000000; /* set A=0xff */
|
|
|
|
}
|
|
|
|
dst += dstStride;
|
|
|
|
map += stride;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* just memcpy */
|
|
|
|
for (j = 0; j < height; j++) {
|
|
|
|
memcpy(dst, map, width * texelBytes);
|
|
|
|
dst += dstStride;
|
|
|
|
map += stride;
|
|
|
|
}
|
2011-11-12 11:50:31 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
ctx->Driver.UnmapRenderbuffer(ctx, rb);
|
|
|
|
|
|
|
|
return GL_TRUE;
|
|
|
|
}
|
|
|
|
|
2011-11-18 17:39:01 -07:00
|
|
|
static void
|
2011-11-12 11:50:31 -07:00
|
|
|
slow_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,
|
|
|
|
GLbitfield transferOps )
|
|
|
|
{
|
|
|
|
struct gl_renderbuffer *rb = ctx->ReadBuffer->_ColorReadBuffer;
|
|
|
|
const gl_format rbFormat = _mesa_get_srgb_format_linear(rb->Format);
|
2011-12-05 20:40:48 -07:00
|
|
|
void *rgba;
|
2011-11-12 11:50:31 -07:00
|
|
|
GLubyte *dst, *map;
|
|
|
|
int dstStride, stride, j;
|
2012-06-25 14:14:25 -07:00
|
|
|
GLboolean dst_is_integer = _mesa_is_enum_format_integer(format);
|
|
|
|
GLboolean dst_is_uint = _mesa_is_format_unsigned(rbFormat);
|
2011-11-12 11:50:31 -07:00
|
|
|
|
|
|
|
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,
|
|
|
|
&map, &stride);
|
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
|
|
|
|
2011-12-05 20:40:48 -07:00
|
|
|
rgba = malloc(width * MAX_PIXEL_BYTES);
|
|
|
|
if (!rgba)
|
|
|
|
goto done;
|
|
|
|
|
2011-11-12 11:50:31 -07:00
|
|
|
for (j = 0; j < height; j++) {
|
2012-06-25 14:14:25 -07:00
|
|
|
if (dst_is_integer) {
|
2012-01-09 08:11:33 -07:00
|
|
|
_mesa_unpack_uint_rgba_row(rbFormat, width, map, (GLuint (*)[4]) rgba);
|
2012-02-29 20:55:50 -07:00
|
|
|
_mesa_rebase_rgba_uint(width, (GLuint (*)[4]) rgba,
|
|
|
|
rb->_BaseFormat);
|
2012-06-25 14:14:25 -07:00
|
|
|
if (dst_is_uint) {
|
|
|
|
_mesa_pack_rgba_span_from_uints(ctx, width, (GLuint (*)[4]) rgba, format,
|
|
|
|
type, dst);
|
|
|
|
} else {
|
|
|
|
_mesa_pack_rgba_span_from_ints(ctx, width, (GLint (*)[4]) rgba, format,
|
|
|
|
type, dst);
|
|
|
|
}
|
2011-11-12 11:50:31 -07:00
|
|
|
} else {
|
2011-12-05 20:40:48 -07:00
|
|
|
_mesa_unpack_rgba_row(rbFormat, width, map, (GLfloat (*)[4]) rgba);
|
2012-02-29 20:55:50 -07:00
|
|
|
_mesa_rebase_rgba_float(width, (GLfloat (*)[4]) rgba,
|
|
|
|
rb->_BaseFormat);
|
2011-12-05 20:40:48 -07:00
|
|
|
_mesa_pack_rgba_span_float(ctx, width, (GLfloat (*)[4]) rgba, format,
|
|
|
|
type, dst, packing, transferOps);
|
2011-11-12 11:50:31 -07:00
|
|
|
}
|
|
|
|
dst += dstStride;
|
|
|
|
map += stride;
|
|
|
|
}
|
|
|
|
|
2011-12-05 20:40:48 -07:00
|
|
|
free(rgba);
|
|
|
|
|
|
|
|
done:
|
2011-11-12 11:50:31 -07:00
|
|
|
ctx->Driver.UnmapRenderbuffer(ctx, rb);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read R, G, B, A, RGB, L, or LA pixels.
|
|
|
|
*/
|
|
|
|
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 )
|
|
|
|
{
|
|
|
|
GLbitfield transferOps = ctx->_ImageTransferState;
|
|
|
|
struct gl_framebuffer *fb = ctx->ReadBuffer;
|
|
|
|
struct gl_renderbuffer *rb = fb->_ColorReadBuffer;
|
|
|
|
|
|
|
|
if (!rb)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if ((ctx->Color._ClampReadColor == GL_TRUE || type != GL_FLOAT) &&
|
2012-06-25 10:52:39 -07:00
|
|
|
!_mesa_is_enum_format_integer(format)) {
|
2011-11-12 11:50:31 -07:00
|
|
|
transferOps |= IMAGE_CLAMP_BIT;
|
|
|
|
}
|
|
|
|
|
2012-02-26 01:33:40 +00:00
|
|
|
/* Try the optimized paths first. */
|
|
|
|
if (fast_read_rgba_pixels_memcpy(ctx, x, y, width, height,
|
|
|
|
format, type, pixels, packing,
|
|
|
|
transferOps)) {
|
|
|
|
return;
|
2011-11-12 11:50:31 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
slow_read_rgba_pixels(ctx, x, y, width, height,
|
|
|
|
format, type, pixels, packing, transferOps);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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;
|
|
|
|
|
|
|
|
if (rb->Format != MESA_FORMAT_Z24_S8 &&
|
|
|
|
rb->Format != MESA_FORMAT_S8_Z24)
|
|
|
|
return GL_FALSE;
|
|
|
|
|
|
|
|
ctx->Driver.MapRenderbuffer(ctx, rb, x, y, width, height, GL_MAP_READ_BIT,
|
|
|
|
&map, &stride);
|
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,
|
|
|
|
GL_MAP_READ_BIT, &depthMap, &depthStride);
|
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,
|
|
|
|
GL_MAP_READ_BIT, &stencilMap, &stencilStride);
|
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,
|
|
|
|
GL_MAP_READ_BIT, &depthMap, &depthStride);
|
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,
|
|
|
|
&stencilStride);
|
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
|
|
|
|
= ctx->Pixel.DepthScale != 1.0 || ctx->Pixel.DepthBias != 0.0;
|
|
|
|
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)
|
|
|
|
{
|
|
|
|
struct gl_pixelstore_attrib clippedPacking = *packing;
|
|
|
|
|
|
|
|
if (ctx->NewState)
|
|
|
|
_mesa_update_state(ctx);
|
|
|
|
|
|
|
|
/* Do all needed clipping here, so that we can forget about it later */
|
|
|
|
if (_mesa_clip_readpixels(ctx, &x, &y, &width, &height, &clippedPacking)) {
|
|
|
|
|
|
|
|
pixels = _mesa_map_pbo_dest(ctx, &clippedPacking, pixels);
|
|
|
|
|
|
|
|
if (pixels) {
|
|
|
|
switch (format) {
|
|
|
|
case GL_STENCIL_INDEX:
|
|
|
|
read_stencil_pixels(ctx, x, y, width, height, type, pixels,
|
|
|
|
&clippedPacking);
|
|
|
|
break;
|
|
|
|
case GL_DEPTH_COMPONENT:
|
|
|
|
read_depth_pixels(ctx, x, y, width, height, type, pixels,
|
|
|
|
&clippedPacking);
|
|
|
|
break;
|
|
|
|
case GL_DEPTH_STENCIL_EXT:
|
|
|
|
read_depth_stencil_pixels(ctx, x, y, width, height, type, pixels,
|
|
|
|
&clippedPacking);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
/* all other formats should be color formats */
|
|
|
|
read_rgba_pixels(ctx, x, y, width, height, format, type, pixels,
|
|
|
|
&clippedPacking);
|
|
|
|
}
|
|
|
|
|
|
|
|
_mesa_unmap_pbo_dest(ctx, &clippedPacking);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-12-28 11:24:37 -08:00
|
|
|
static GLenum
|
|
|
|
read_pixels_es3_error_check(GLenum format, GLenum type,
|
|
|
|
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;
|
|
|
|
|
|
|
|
if (!_mesa_is_color_format(internalFormat)) {
|
|
|
|
return GL_INVALID_OPERATION;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
return GL_INVALID_OPERATION;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-06-09 14:22:15 -06:00
|
|
|
void GLAPIENTRY
|
2011-04-26 14:54:41 -06:00
|
|
|
_mesa_ReadnPixelsARB( GLint x, GLint y, GLsizei width, GLsizei height,
|
|
|
|
GLenum format, GLenum type, GLsizei bufSize,
|
|
|
|
GLvoid *pixels )
|
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;
|
2012-02-07 07:42:33 -07:00
|
|
|
|
2008-06-09 14:22:15 -06:00
|
|
|
GET_CURRENT_CONTEXT(ctx);
|
|
|
|
ASSERT_OUTSIDE_BEGIN_END_AND_FLUSH(ctx);
|
|
|
|
|
|
|
|
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,
|
|
|
|
_mesa_lookup_enum_by_nr(format),
|
|
|
|
_mesa_lookup_enum_by_nr(type),
|
|
|
|
pixels);
|
|
|
|
|
2008-06-09 14:22:15 -06:00
|
|
|
if (width < 0 || height < 0) {
|
|
|
|
_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);
|
|
|
|
|
|
|
|
if (ctx->ReadBuffer->_Status != GL_FRAMEBUFFER_COMPLETE_EXT) {
|
|
|
|
_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);
|
|
|
|
if (rb == NULL) {
|
|
|
|
_mesa_error(ctx, GL_INVALID_OPERATION,
|
|
|
|
"glReadPixels(read buffer)");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-07-27 12:24:24 -07: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.
|
|
|
|
*/
|
2012-11-30 15:07:54 -08:00
|
|
|
if (_mesa_is_gles(ctx)) {
|
|
|
|
if (ctx->Version < 30) {
|
|
|
|
err = _mesa_es_error_check_format_and_type(format, type, 2);
|
|
|
|
if (err == GL_NO_ERROR) {
|
|
|
|
if (type == GL_FLOAT || type == GL_HALF_FLOAT_OES) {
|
|
|
|
err = GL_INVALID_OPERATION;
|
|
|
|
}
|
2012-07-27 12:24:24 -07:00
|
|
|
}
|
2012-12-28 11:24:37 -08:00
|
|
|
} else {
|
|
|
|
err = read_pixels_es3_error_check(format, type, rb);
|
2012-07-27 12:24:24 -07:00
|
|
|
}
|
|
|
|
|
2012-11-30 15:07:54 -08:00
|
|
|
if (err == GL_NO_ERROR && (format == GL_DEPTH_COMPONENT
|
|
|
|
|| format == GL_DEPTH_STENCIL)) {
|
|
|
|
err = GL_INVALID_ENUM;
|
|
|
|
}
|
|
|
|
|
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)",
|
|
|
|
_mesa_lookup_enum_by_nr(format),
|
|
|
|
_mesa_lookup_enum_by_nr(type));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-07 07:42:33 -07:00
|
|
|
err = _mesa_error_check_format_and_type(ctx, format, type);
|
|
|
|
if (err != GL_NO_ERROR) {
|
|
|
|
_mesa_error(ctx, err, "glReadPixels(invalid format %s and/or type %s)",
|
|
|
|
_mesa_lookup_enum_by_nr(format),
|
|
|
|
_mesa_lookup_enum_by_nr(type));
|
2008-06-09 14:22:15 -06:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-11-13 13:39:37 -08:00
|
|
|
if (_mesa_is_user_fbo(ctx->ReadBuffer) &&
|
|
|
|
ctx->ReadBuffer->Visual.samples > 0) {
|
|
|
|
_mesa_error(ctx, GL_INVALID_OPERATION, "glReadPixels(multisample FBO)");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!_mesa_source_buffer_exists(ctx, format)) {
|
|
|
|
_mesa_error(ctx, GL_INVALID_OPERATION, "glReadPixels(no readbuffer)");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-10-25 19:07:33 -06: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;
|
2010-10-26 20:30:40 -06:00
|
|
|
const GLboolean srcInteger = _mesa_is_format_integer_color(rb->Format);
|
2012-06-25 10:52:39 -07:00
|
|
|
const GLboolean dstInteger = _mesa_is_enum_format_integer(format);
|
2010-10-25 19:07:33 -06:00
|
|
|
if (dstInteger != srcInteger) {
|
|
|
|
_mesa_error(ctx, GL_INVALID_OPERATION,
|
|
|
|
"glReadPixels(integer / non-integer format mismatch");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-04-02 13:05:55 -06:00
|
|
|
if (width == 0 || height == 0)
|
|
|
|
return; /* nothing to do */
|
|
|
|
|
2011-04-26 14:54:41 -06:00
|
|
|
if (!_mesa_validate_pbo_access(2, &ctx->Pack, width, height, 1,
|
|
|
|
format, type, bufSize, pixels)) {
|
|
|
|
if (_mesa_is_bufferobj(ctx->Pack.BufferObj)) {
|
2008-06-09 14:22:15 -06:00
|
|
|
_mesa_error(ctx, GL_INVALID_OPERATION,
|
2011-04-26 14:54:41 -06:00
|
|
|
"glReadPixels(out of bounds PBO access)");
|
|
|
|
} else {
|
|
|
|
_mesa_error(ctx, GL_INVALID_OPERATION,
|
|
|
|
"glReadnPixelsARB(out of bounds access:"
|
|
|
|
" bufSize (%d) is too small)", bufSize);
|
2008-06-09 14:22:15 -06:00
|
|
|
}
|
2011-04-26 14:54:41 -06:00
|
|
|
return;
|
|
|
|
}
|
2008-06-09 14:22:15 -06:00
|
|
|
|
2011-04-26 14:54:41 -06:00
|
|
|
if (_mesa_is_bufferobj(ctx->Pack.BufferObj) &&
|
|
|
|
_mesa_bufferobj_mapped(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,
|
|
|
|
format, type, &ctx->Pack, pixels);
|
|
|
|
}
|
2011-04-26 14:54:41 -06:00
|
|
|
|
|
|
|
void GLAPIENTRY
|
|
|
|
_mesa_ReadPixels( GLint x, GLint y, GLsizei width, GLsizei height,
|
|
|
|
GLenum format, GLenum type, GLvoid *pixels )
|
|
|
|
{
|
|
|
|
_mesa_ReadnPixelsARB(x, y, width, height, format, type, INT_MAX, pixels);
|
|
|
|
}
|