diff options
author | Owen W. Taylor <[email protected]> | 2012-10-17 00:50:28 -0400 |
---|---|---|
committer | Chad Versace <[email protected]> | 2012-10-17 10:16:23 -0700 |
commit | 1d0c6211212a2d486c8f7f64349fd9683061342e (patch) | |
tree | 7923c8e50c25b16fc438da4f8d877b4b257d4685 /src/glx | |
parent | aa2067c757506e8f3418ef11333382a1fa45ad6e (diff) |
glx: Fix listing of INTEL_swap_event in glXQueryExtensionsString()
Due to a string mismatch, INTEL_swap_event wasn't listed among GLX
extensions for the connection, even when present on both client and
server. That is, glXQueryServerString and glXGetClientString reported the
extension, but glXQueryExtensionsString did not.
Note: This is a candidate for the stable branches.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=56057
Reviewed-by: Chad Versace <[email protected]>
Diffstat (limited to 'src/glx')
-rw-r--r-- | src/glx/dri2_glx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glx/dri2_glx.c b/src/glx/dri2_glx.c index a58b3152c9d..12b302601e1 100644 --- a/src/glx/dri2_glx.c +++ b/src/glx/dri2_glx.c @@ -1010,7 +1010,7 @@ dri2BindExtensions(struct dri2_screen *psc, const __DRIextension **extensions) __glXEnableDirectExtension(&psc->base, "GLX_SGI_make_current_read"); /* FIXME: if DRI2 version supports it... */ - __glXEnableDirectExtension(&psc->base, "INTEL_swap_event"); + __glXEnableDirectExtension(&psc->base, "GLX_INTEL_swap_event"); if (psc->dri2->base.version >= 3) { const unsigned mask = psc->dri2->getAPIMask(psc->driScreen); |