Module: wine Branch: master Commit: 68c5477d27f2082fbb8bd82286b40d10a4e3fdcf URL: http://source.winehq.org/git/wine.git/?a=commit;h=68c5477d27f2082fbb8bd82286...
Author: Chris Robinson chris.kcat@gmail.com Date: Sat Aug 4 11:02:14 2007 -0700
winex11: Be consistent with GLX_SLOW_CONFIG meaning GENERIC_ACCELERATION.
---
dlls/winex11.drv/opengl.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/winex11.drv/opengl.c b/dlls/winex11.drv/opengl.c index d4ed729..ca3c50a 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);