From 257edb5b9aedc9fc5d5c13eb2f48a0c11d15456f Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Thu, 9 Nov 2017 16:57:31 -0500 Subject: [PATCH] glx/dri3: Fix passing renderType into glXCreateContext MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Without this, trying to create a GLX_RGBA_FLOAT_TYPE_ARB context would fail, because GLX_RGBA_TYPE would be a mismatch with the fbconfig. Cc: mesa-stable@lists.freedesktop.org Reviewed-by: Tapani Pälli Reviewed-by: Emil Velikov Signed-off-by: Adam Jackson --- src/glx/dri3_glx.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/glx/dri3_glx.c b/src/glx/dri3_glx.c index fa048f990a9..a10306fe329 100644 --- a/src/glx/dri3_glx.c +++ b/src/glx/dri3_glx.c @@ -324,9 +324,10 @@ dri3_create_context(struct glx_screen *base, struct glx_context *shareList, int renderType) { unsigned int error; + uint32_t attribs[2] = { GLX_RENDER_TYPE, renderType }; return dri3_create_context_attribs(base, config_base, shareList, - 0, NULL, &error); + 1, attribs, &error); } static void -- 2.30.2