From: Adam Jackson Date: Sat, 29 Oct 2011 00:38:32 +0000 (-0400) Subject: glx: Don't enable INTEL_swap_event unconditionally X-Git-Tag: 062012170305~3583 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=25620eb1d277c6b80edb136eaeca12532fcfd3ce;p=profile%2Fivi%2Fmesa.git glx: Don't enable INTEL_swap_event unconditionally DRI2 supports this now - and already enables it explicitly - but drisw does not and should not. Otherwise toolkits like clutter will only ever SwapBuffers once and wait forever for an event that's not coming. Signed-off-by: Adam Jackson --- diff --git a/src/glx/glxextensions.c b/src/glx/glxextensions.c index d6eb408..0d2888c 100644 --- a/src/glx/glxextensions.c +++ b/src/glx/glxextensions.c @@ -139,7 +139,7 @@ static const struct extension_info known_glx_extensions[] = { { GLX(SGIX_visual_select_group), VER(0,0), Y, Y, N, N }, { GLX(EXT_texture_from_pixmap), VER(0,0), Y, N, N, N }, #endif - { GLX(INTEL_swap_event), VER(1,4), Y, Y, N, N }, + { GLX(INTEL_swap_event), VER(1,4), Y, N, N, N }, { NULL } };