winex11: Be consistent with GLX_SLOW_CONFIG meaning GENERIC_ACCELERATION.

This commit is contained in:
Chris Robinson 2007-08-04 11:02:14 -07:00 committed by Alexandre Julliard
parent b4c11e3033
commit 68c5477d27
1 changed files with 1 additions and 1 deletions

View File

@ -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);