Commit 68c5477d authored by Chris Robinson's avatar Chris Robinson Committed by Alexandre Julliard

winex11: Be consistent with GLX_SLOW_CONFIG meaning GENERIC_ACCELERATION.

parent b4c11e30
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment