diff options
author | Brian <[email protected]> | 2007-11-07 17:16:47 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2007-11-07 17:16:47 -0700 |
commit | 3fe055ec9218a8745d9a53f75f4abd4760fcce28 (patch) | |
tree | 3418e9b0ae67dbdd85a4e00783aec5f3785c4bd5 /src/mesa/pipe/p_winsys.h | |
parent | ae44a81d1bd40852a7cea9b8025dfa3821adc785 (diff) |
Remove winsys->wait_idle(), subsumed by pipe->flush().
Connect intel_i915_batch_finish() into i915_winsys, just like intel_i915_batch_flush().
Call i915_winsys->batch_finish() in response to pipe->flush(PIPE_FLUSH_WAIT).
Now all the batchbuffer/fence code is in one place and a little cleaner.
Diffstat (limited to 'src/mesa/pipe/p_winsys.h')
-rw-r--r-- | src/mesa/pipe/p_winsys.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/mesa/pipe/p_winsys.h b/src/mesa/pipe/p_winsys.h index ee10e305599..41d522e11ea 100644 --- a/src/mesa/pipe/p_winsys.h +++ b/src/mesa/pipe/p_winsys.h @@ -63,9 +63,6 @@ struct pipe_winsys /** Returns name of this winsys interface */ const char *(*get_name)( struct pipe_winsys *sws ); - /** Wait for any buffered rendering to finish */ - void (*wait_idle)( struct pipe_winsys *sws, void *context_private ); - /** * Do any special operations to ensure frontbuffer contents are * displayed, eg copy fake frontbuffer. |