diff options
author | Brian <[email protected]> | 2007-11-07 16:07:17 -0700 |
---|---|---|
committer | Brian <[email protected]> | 2007-11-07 16:08:04 -0700 |
commit | 10c62bf0683437672c83339138a6802d56aeca8f (patch) | |
tree | cdf17f1ce6ed6d6c96132013752c8f365aa41e72 /src/mesa/pipe/xlib | |
parent | 03cfeb31af7834c2b2701ad25ec39f8375df6c96 (diff) |
Remove context dependencies in winsys layer.
The winsys object is now per-screen and shared by multiple contexts.
The regionPool is now part of the i915 winsys layer.
The winsys wait_idle() and flush_frontbuffer() funcs will get more attention...
Diffstat (limited to 'src/mesa/pipe/xlib')
-rw-r--r-- | src/mesa/pipe/xlib/xm_winsys.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/pipe/xlib/xm_winsys.c b/src/mesa/pipe/xlib/xm_winsys.c index cae53c70db0..ea6b06a93c7 100644 --- a/src/mesa/pipe/xlib/xm_winsys.c +++ b/src/mesa/pipe/xlib/xm_winsys.c @@ -168,7 +168,7 @@ xm_flush_frontbuffer(struct pipe_winsys *pws, } static void -xm_wait_idle(struct pipe_winsys *pws) +xm_wait_idle(struct pipe_winsys *pws, void *context_private) { /* no-op */ } |