From e542ed463dd5ae04e730901208344477afdc6a62 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Fri, 30 Sep 2016 11:01:26 +0100 Subject: [PATCH] glx: correctly mask the drawableType for GLX_ARB_fbconfig_float MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The comment/spec says - only for pbuffer drawables, while the code clears the window/pixmap bit. Practise what you preach and apply the trivial tweak. In practise this should not cause functional change. Signed-off-by: Emil Velikov Reviewed-by: Marek Olšák Reviewed-by: Ian Romanick --- src/glx/glxext.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/glx/glxext.c b/src/glx/glxext.c index 0c2f73fea00..f6bc377add5 100644 --- a/src/glx/glxext.c +++ b/src/glx/glxext.c @@ -599,7 +599,7 @@ __glXInitializeVisualConfigFromTags(struct glx_config * config, int count, * GLXPbuffer drawables." */ if (config->floatMode) - config->drawableType &= ~(GLX_WINDOW_BIT|GLX_PIXMAP_BIT); + config->drawableType &= GLX_PBUFFER_BIT; } static struct glx_config * -- 2.30.2