From d59b52fc08f2d80b38993e383e61c3eeb0bb0763 Mon Sep 17 00:00:00 2001 From: Ian Romanick Date: Tue, 29 Aug 2006 14:40:13 -0700 Subject: [PATCH] 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. --- GL/glx/extension_string.c | 2 ++ 1 file changed, 2 insertions(+) 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, },