diff options
author | Brian <[email protected]> | 2007-11-07 16:59:37 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2007-11-07 16:59:37 -0700 |
commit | ae44a81d1bd40852a7cea9b8025dfa3821adc785 (patch) | |
tree | d1e0b635f17abbe2f82687701d9802755241cf18 /src/mesa/state_tracker/st_framebuffer.c | |
parent | 10c62bf0683437672c83339138a6802d56aeca8f (diff) |
New PIPE_FLUSH_WAIT flag for pipe->flush().
The state tracker doesn't have to directly call winsys->wait_idle() anymore.
glFlush and glFinish both go through pipe->flush() now.
Diffstat (limited to 'src/mesa/state_tracker/st_framebuffer.c')
-rw-r--r-- | src/mesa/state_tracker/st_framebuffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_framebuffer.c b/src/mesa/state_tracker/st_framebuffer.c index b04dcdb79df..4ae2837f0a0 100644 --- a/src/mesa/state_tracker/st_framebuffer.c +++ b/src/mesa/state_tracker/st_framebuffer.c @@ -179,7 +179,7 @@ st_notify_swapbuffers(struct st_framebuffer *stfb) GET_CURRENT_CONTEXT(ctx); if (ctx && ctx->DrawBuffer == &stfb->Base) { - st_flush(ctx->st); + st_flush(ctx->st, 0x0); } } |