diff options
author | Brian Paul <[email protected]> | 2012-01-26 20:01:12 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-01-27 18:21:44 -0700 |
commit | 06aa607ba76d940c48556935259c2a34eac7a8dc (patch) | |
tree | df2b4dcf0451559602b748a6175121aff53de47a /src/mesa/main/readpix.c | |
parent | 952ca0785236729b69e154b3b48783fc4d9a5526 (diff) |
mesa: added swapBytes parameter to _mesa_format_matches_format_and_type()
Not actually used yet though.
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/mesa/main/readpix.c')
-rw-r--r-- | src/mesa/main/readpix.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/main/readpix.c b/src/mesa/main/readpix.c index 84b5224c858..71de0b31298 100644 --- a/src/mesa/main/readpix.c +++ b/src/mesa/main/readpix.c @@ -209,7 +209,8 @@ fast_read_rgba_pixels_memcpy( struct gl_context *ctx, GLubyte *dst, *map; int dstStride, stride, j, texelBytes; - if (!_mesa_format_matches_format_and_type(rb->Format, format, type)) + if (!_mesa_format_matches_format_and_type(rb->Format, format, type, + ctx->Pack.SwapBytes)) return GL_FALSE; /* check for things we can't handle here */ |