diff options
author | Marek Olšák <[email protected]> | 2012-11-23 18:31:42 +0100 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2012-12-02 00:19:00 +0100 |
commit | 4a486f8bf2ca3d88228f8313282289abe78bc2f8 (patch) | |
tree | 092930126db30205f15a37a1097a2b84b51c721b /src/mesa/drivers/dri/nouveau | |
parent | 5b7e9b73603ce5fb48cc30896df277df0ae89856 (diff) |
glx/dri2: add and use new driver hook flush_with_flags
Diffstat (limited to 'src/mesa/drivers/dri/nouveau')
-rw-r--r-- | src/mesa/drivers/dri/nouveau/nouveau_screen.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/nouveau/nouveau_screen.c b/src/mesa/drivers/dri/nouveau/nouveau_screen.c index dc6d758f771..ca39fff807a 100644 --- a/src/mesa/drivers/dri/nouveau/nouveau_screen.c +++ b/src/mesa/drivers/dri/nouveau/nouveau_screen.c @@ -216,7 +216,7 @@ nouveau_drawable_flush(__DRIdrawable *draw) } static const struct __DRI2flushExtensionRec nouveau_flush_extension = { - { __DRI2_FLUSH, __DRI2_FLUSH_VERSION }, + { __DRI2_FLUSH, 3 }, nouveau_drawable_flush, dri2InvalidateDrawable, }; |