diff options
author | Brian <brian.paul@tungstengraphics.com> | 2007-11-07 16:59:37 -0700 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2007-11-07 16:59:37 -0700 |
commit | ae44a81d1bd40852a7cea9b8025dfa3821adc785 (patch) | |
tree | d1e0b635f17abbe2f82687701d9802755241cf18 /src/mesa/pipe/p_defines.h | |
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/pipe/p_defines.h')
-rw-r--r-- | src/mesa/pipe/p_defines.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/pipe/p_defines.h b/src/mesa/pipe/p_defines.h index ca9929bfee..6b5881b64d 100644 --- a/src/mesa/pipe/p_defines.h +++ b/src/mesa/pipe/p_defines.h @@ -187,8 +187,9 @@ /** * Flush types: */ -#define PIPE_FLUSH_RENDER_CACHE 0x1 +#define PIPE_FLUSH_RENDER_CACHE 0x1 #define PIPE_FLUSH_TEXTURE_CACHE 0x2 +#define PIPE_FLUSH_WAIT 0x4 /** |