diff options
author | Adam Jackson <ajax@redhat.com> | 2011-10-28 20:38:32 -0400 |
---|---|---|
committer | Adam Jackson <ajax@redhat.com> | 2011-10-28 20:38:32 -0400 |
commit | 25620eb1d277c6b80edb136eaeca12532fcfd3ce (patch) | |
tree | d1781921bfc800e68014346433169fd46790f3e1 /src/glx/glxextensions.c | |
parent | 0c6a2c78fdd8b4ae620a9f449cab65c4be21a9a1 (diff) | |
download | mesa-25620eb1d277c6b80edb136eaeca12532fcfd3ce.tar.gz |
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 <ajax@redhat.com>
Diffstat (limited to 'src/glx/glxextensions.c')
-rw-r--r-- | src/glx/glxextensions.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glx/glxextensions.c b/src/glx/glxextensions.c index d6eb408309c..0d2888cfb6b 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 } }; |