diff options
author | Ben Skeggs <[email protected]> | 2010-01-11 11:41:47 +1000 |
---|---|---|
committer | Ben Skeggs <[email protected]> | 2010-01-11 11:44:38 +1000 |
commit | 32da02f7c19f49802fe9589e73c3945502a197c9 (patch) | |
tree | 9593ef86fec717da12a02792214acc0c9a6ae2aa /src/gallium/include | |
parent | 8a2c961798b4ab1f1095f14d814242422020d4f9 (diff) |
st/dri: update dri2 drawables when viewport is changed
Fixes gnome-shell on nouveau, as well as window resize with various
other applications.
Signed-off-by: Ben Skeggs <[email protected]>
Diffstat (limited to 'src/gallium/include')
-rw-r--r-- | src/gallium/include/pipe/p_screen.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gallium/include/pipe/p_screen.h b/src/gallium/include/pipe/p_screen.h index f0a4de5df33..b8e001a6b01 100644 --- a/src/gallium/include/pipe/p_screen.h +++ b/src/gallium/include/pipe/p_screen.h @@ -266,6 +266,11 @@ struct pipe_screen { void (*video_surface_destroy)( struct pipe_video_surface *vsfc ); + /** + * Do any special operations to ensure buffer size is correct + */ + void (*update_buffer)( struct pipe_screen *ws, + void *context_private ); /** * Do any special operations to ensure frontbuffer contents are |