diff options
author | Brian Paul <[email protected]> | 2010-05-17 12:43:25 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-05-17 12:43:50 -0600 |
commit | ddf09d20df8b9b4706e3abf901cb8879b02951db (patch) | |
tree | 8bd0718c96a6e5149780915667dab049df483167 /src/mesa/state_tracker | |
parent | 92f88c746cc270e575aa13ce74debf5b21365fa1 (diff) |
st/mesa: call st_flush_bitmap_cache() from st_readpixels()
Fixes regression from commit b0427bedde80e3189524651a327235bdfddbc613.
Reviewed-by: José Fonseca <[email protected]>
Diffstat (limited to 'src/mesa/state_tracker')
-rw-r--r-- | src/mesa/state_tracker/st_cb_readpixels.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_cb_readpixels.c b/src/mesa/state_tracker/st_cb_readpixels.c index 12d3c99a351..b8493dab93f 100644 --- a/src/mesa/state_tracker/st_cb_readpixels.c +++ b/src/mesa/state_tracker/st_cb_readpixels.c @@ -46,6 +46,7 @@ #include "st_debug.h" #include "st_context.h" #include "st_atom.h" +#include "st_cb_bitmap.h" #include "st_cb_readpixels.h" #include "st_cb_fbo.h" @@ -344,6 +345,8 @@ st_readpixels(GLcontext *ctx, GLint x, GLint y, GLsizei width, GLsizei height, return; } + st_flush_bitmap_cache(st); + dest = _mesa_map_pbo_dest(ctx, &clippedPacking, dest); if (!dest) return; |