diff options
author | Brian Paul <[email protected]> | 2012-01-26 20:01:13 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-01-27 18:21:46 -0700 |
commit | d250287d53c0dcd936ca632f4d991ffaac6693c2 (patch) | |
tree | f5a5f7ea331b20ff8fe2d5a1bbddbc216e8ddbff /src/mesa/main/readpix.c | |
parent | 07ff5adc323dc0ea038094d6f78ee0db18521a7d (diff) |
mesa: remove byteswap check in fast_read_rgba_pixels_memcpy()
It's handled by _mesa_format_matches_format_and_type() now.
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/main/readpix.c')
-rw-r--r-- | 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 71de0b31298..908a55e702e 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); |