summaryrefslogtreecommitdiffstats
path: root/src/glx/glxextensions.c
diff options
context:
space:
mode:
authorIan Romanick <[email protected]>2011-12-02 14:45:11 -0800
committerIan Romanick <[email protected]>2012-01-02 12:41:45 -0800
commite6280c3ba9579bf01f8b82e19497ba8f142a8d09 (patch)
tree03607c28d7f750d7c5c04dfb9fd1c4ac80b9432e /src/glx/glxextensions.c
parente532b6288f01b63d8d8ba8c8dc08292967e65490 (diff)
glx: Enable GLX_EXT_create_context_es2_profile
This extension is only enabled if the underlying driver advertises support for OpenGL ES 2.0. This happens either through the getAPIMask function in version 2 of the DRI2 extension or implicity through version 2 of the DRISW extension. Since there is no OpenGL ES 2.0 protocol, this extension is marked as only available with direct-rendering. Signed-off-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/glx/glxextensions.c')
-rw-r--r--src/glx/glxextensions.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/glx/glxextensions.c b/src/glx/glxextensions.c
index df5ef5c6b47..73b84dc7fe9 100644
--- a/src/glx/glxextensions.c
+++ b/src/glx/glxextensions.c
@@ -80,6 +80,7 @@ static const struct extension_info known_glx_extensions[] = {
{ GLX(EXT_visual_info), VER(0,0), Y, Y, N, N },
{ GLX(EXT_visual_rating), VER(0,0), Y, Y, N, N },
{ GLX(EXT_framebuffer_sRGB), VER(0,0), Y, Y, N, N },
+ { GLX(EXT_create_context_es2_profile), VER(0,0), Y, N, N, Y },
{ GLX(MESA_copy_sub_buffer), VER(0,0), Y, N, N, N },
{ GLX(MESA_multithread_makecurrent),VER(0,0), Y, N, Y, N },
{ GLX(MESA_swap_control), VER(0,0), Y, N, N, Y },
@@ -620,6 +621,16 @@ __glXCalculateUsableExtensions(struct glx_screen * psc,
}
}
+ /* This hack is necessary because GLX_ARB_create_context_profile depends on
+ * server support, but GLX_EXT_create_context_es2_profile is direct-only.
+ * Without this hack, it would be possible to advertise
+ * GLX_EXT_create_context_es2_profile without
+ * GLX_ARB_create_context_profile. That would be a problem.
+ */
+ if (!IS_SET(server_support, ARB_create_context_profile_bit)) {
+ CLR_BIT(usable, EXT_create_context_es2_profile_bit);
+ }
+
psc->effectiveGLXexts = __glXGetStringFromTable(known_glx_extensions,
usable);
}