From 0d044351b7043cd0bc94c1cb9b7a2213f8054414 Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Mon, 6 Nov 2017 16:28:36 -0500 Subject: [PATCH] gallium/dri2: Enable {GLX_ARB,EGL_KHR}_context_flush_control MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Reviewed-and-tested-by: Nicolai Hähnle Signed-off-by: Adam Jackson --- src/gallium/state_trackers/dri/dri2.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gallium/state_trackers/dri/dri2.c b/src/gallium/state_trackers/dri/dri2.c index a70f37fe09a..d5ae9cbd69b 100644 --- a/src/gallium/state_trackers/dri/dri2.c +++ b/src/gallium/state_trackers/dri/dri2.c @@ -1955,6 +1955,7 @@ static const __DRIextension *dri_screen_extensions[] = { &dri2FenceExtension.base, &dri2InteropExtension.base, &dri2NoErrorExtension.base, + &dri2FlushControlExtension.base, NULL }; @@ -1969,6 +1970,7 @@ static const __DRIextension *dri_robust_screen_extensions[] = { &dri2InteropExtension.base, &dri2Robustness.base, &dri2NoErrorExtension.base, + &dri2FlushControlExtension.base, NULL }; -- 2.30.2