summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Romanick <idr@us.ibm.com>2006-08-29 14:40:13 -0700
committerIan Romanick <idr@us.ibm.com>2006-08-29 14:40:13 -0700
commitd59b52fc08f2d80b38993e383e61c3eeb0bb0763 (patch)
tree7fe0d7fa99c27c9ad739f820ad4ee868b4ceb10f
parentdb6d04d4b87fd9b6409a3ddf0479a88440c2eda1 (diff)
Make sure unsupported extensions are disabled.
GLX protocol isn't supported for GLX_SGI_swap_control or GLX_SGI_video_sync. Remove them from the list of available extensions until they are supported.
-rw-r--r--GL/glx/extension_string.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/GL/glx/extension_string.c b/GL/glx/extension_string.c
index e5899d774..963b18ab0 100644
--- a/GL/glx/extension_string.c
+++ b/GL/glx/extension_string.c
@@ -77,8 +77,10 @@ static const struct extension_info known_glx_extensions[] = {
{ GLX(MESA_copy_sub_buffer), VER(0,0), N, },
{ GLX(OML_swap_method), VER(0,0), Y, },
{ GLX(SGI_make_current_read), VER(1,3), N, },
+#if 0 /* GLX protocol not yet supported for these. */
{ GLX(SGI_swap_control), VER(0,0), N, },
{ GLX(SGI_video_sync), VER(0,0), N, },
+#endif
{ GLX(SGIS_multisample), VER(0,0), Y, },
{ GLX(SGIX_fbconfig), VER(1,3), Y, },
{ GLX(SGIX_pbuffer), VER(1,3), N, },