From 4d361ce002e6563915388397b4d5241bf9e438ab Mon Sep 17 00:00:00 2001 From: Huw Davies Date: Thu, 22 Jun 2006 12:44:43 +0100 Subject: [PATCH] winex11: glXQueryExtension has its error and event base arguments swapped compared with other *QueryExtension functions! --- dlls/winex11.drv/opengl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/winex11.drv/opengl.c b/dlls/winex11.drv/opengl.c index bfd023eda37..60ebcce7fa1 100644 --- a/dlls/winex11.drv/opengl.c +++ b/dlls/winex11.drv/opengl.c @@ -156,7 +156,7 @@ LOAD_FUNCPTR(glXDestroyGLXPixmap) #undef LOAD_FUNCPTR wine_tsx11_lock(); - if (pglXQueryExtension(gdi_display, &event_base, &error_base) == True) { + if (pglXQueryExtension(gdi_display, &error_base, &event_base) == True) { TRACE("GLX is up and running error_base = %d\n", error_base); } else { wine_dlclose(opengl_handle, NULL, 0); -- 2.11.4.GIT