diff options
author | Roland Scheidegger <[email protected]> | 2009-03-27 19:39:52 +0100 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2009-03-28 02:02:42 +0100 |
commit | c6a6cc191813e8343a17b028146a34f193a6ce44 (patch) | |
tree | cb1ecd35ac15c9b2c0cf3740dbdc631c7622233a /src/mesa/state_tracker | |
parent | a9bf5b5ccac2a75f1a2470d4910361e65b2d8eab (diff) |
mesa: add new signed rgba texture format
This is a (partial) backport of the signed texture format support in OGL 3.1.
Since it wasn't promoted from an existing extension roll our own.
Diffstat (limited to 'src/mesa/state_tracker')
-rw-r--r-- | src/mesa/state_tracker/st_cb_readpixels.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_cb_readpixels.c b/src/mesa/state_tracker/st_cb_readpixels.c index ce7a8cda4e8..c11973cdb3d 100644 --- a/src/mesa/state_tracker/st_cb_readpixels.c +++ b/src/mesa/state_tracker/st_cb_readpixels.c @@ -486,7 +486,7 @@ st_readpixels(GLcontext *ctx, GLint x, GLint y, GLsizei width, GLsizei height, df += dfStride; if (!dfStride) { _mesa_pack_rgba_span_float(ctx, width, temp, format, type, dst, - &clippedPacking, transferOps); + &clippedPacking, transferOps, GL_FALSE); dst += dstStride; } } |