diff options
author | Brian Paul <[email protected]> | 2008-04-04 12:24:25 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2008-04-04 12:24:25 -0600 |
commit | ac2ca39f8f6024b13b0ddbfe767f9dbc9a528e6c (patch) | |
tree | bf25dcdd2e598e359c0e5112ec154ca7544e42f6 | |
parent | 5ffc5cce1507fd407399911abefeea988a69394e (diff) |
gallium: add new call to st_flush_bitmap_cache() to fix recent regression
-rw-r--r-- | src/mesa/state_tracker/st_cb_flush.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mesa/state_tracker/st_cb_flush.c b/src/mesa/state_tracker/st_cb_flush.c index c90bedd3e5f..c7efa40e38a 100644 --- a/src/mesa/state_tracker/st_cb_flush.c +++ b/src/mesa/state_tracker/st_cb_flush.c @@ -60,6 +60,8 @@ static void st_gl_flush( struct st_context *st, uint pipeFlushFlags, { GLframebuffer *fb = st->ctx->DrawBuffer; + st_flush_bitmap_cache(st); + FLUSH_VERTICES(st->ctx, 0); if (!fb) |