summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Jackson <ajax@redhat.com>2011-10-28 20:38:32 -0400
committerAdam Jackson <ajax@redhat.com>2011-10-28 20:41:45 -0400
commit4464ee1a9aa3745109cee23531e3fb2323234d07 (patch)
tree79da8f873ddebe2d6d372049fbb6f943548394f3
parent439628318bfd4596d0d8129a0792d2c3ea849bb7 (diff)
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> (cherry picked from commit 25620eb1d277c6b80edb136eaeca12532fcfd3ce)
-rw-r--r--src/glx/glxextensions.c2
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 }
};