[Mesa-dev] [PATCH 14/14] mesa: remove byteswap check in fast_read_rgba_pixels_memcpy()
Brian Paul
brianp at vmware.com
Thu Jan 26 19:04:20 PST 2012
It's handled by _mesa_format_matches_format_and_type() now.
---
src/mesa/main/readpix.c | 5 -----
1 files changed, 0 insertions(+), 5 deletions(-)
diff --git a/src/mesa/main/readpix.c b/src/mesa/main/readpix.c
index 71de0b3..908a55e 100644
--- a/src/mesa/main/readpix.c
+++ b/src/mesa/main/readpix.c
@@ -213,11 +213,6 @@ fast_read_rgba_pixels_memcpy( struct gl_context *ctx,
ctx->Pack.SwapBytes))
return GL_FALSE;
- /* check for things we can't handle here */
- if (packing->SwapBytes) {
- 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);
--
1.7.1
More information about the mesa-dev
mailing list