summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2017-11-09 16:57:31 -0500
committerAndres Gomez <agomez@igalia.com>2017-11-21 18:16:45 +0200
commit167f50ae68867eb63f18a82d7fec21bf75ab399f (patch)
tree380cbe3aa66d6af73b78f301b4a929d21754d851
parentd53558fd67f1b7bbcc4fa9cb40f8c572d752b5dc (diff)
downloadmesa-167f50ae68867eb63f18a82d7fec21bf75ab399f.tar.gz
glx/dri3: Fix passing renderType into glXCreateContext
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 <tapani.palli@intel.com> Reviewed-by: Emil Velikov <emil.velikov@collabora.com> Signed-off-by: Adam Jackson <ajax@redhat.com> (cherry picked from commit 257edb5b9aedc9fc5d5c13eb2f48a0c11d15456f)
-rw-r--r--src/glx/dri3_glx.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/glx/dri3_glx.c b/src/glx/dri3_glx.c
index 509160697f8..1eb21a99010 100644
--- a/src/glx/dri3_glx.c
+++ b/src/glx/dri3_glx.c
@@ -353,9 +353,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