From 68c5477d27f2082fbb8bd82286b40d10a4e3fdcf Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sat, 4 Aug 2007 11:02:14 -0700 Subject: [PATCH] winex11: Be consistent with GLX_SLOW_CONFIG meaning GENERIC_ACCELERATION. --- 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 d4ed729a120..ca3c50ac11e 100644 --- a/dlls/winex11.drv/opengl.c +++ b/dlls/winex11.drv/opengl.c @@ -2532,7 +2532,7 @@ static GLboolean WINAPI X11DRV_wglGetPixelFormatAttribivARB(HDC hdc, int iPixelF if (hTest) goto get_error; switch (tmp) { case GLX_NONE: piValues[i] = WGL_FULL_ACCELERATION_ARB; break; - case GLX_SLOW_CONFIG: piValues[i] = WGL_NO_ACCELERATION_ARB; break; + case GLX_SLOW_CONFIG: piValues[i] = WGL_GENERIC_ACCELERATION_ARB; break; case GLX_NON_CONFORMANT_CONFIG: piValues[i] = WGL_FULL_ACCELERATION_ARB; break; default: ERR("unexpected Config Caveat(%x)\n", tmp); -- 2.11.4.GIT