Module: wine Branch: stable Commit: 32c912253b219c0e1c17da8039fbd5d2930dc2cb URL: http://source.winehq.org/git/wine.git/?a=commit;h=32c912253b219c0e1c17da8039...
Author: Charles Davis cdavis5x@gmail.com Date: Fri Feb 12 02:01:42 2016 -0700
winex11.drv: Actually query the swap method attribute.
Signed-off-by: Charles Davis cdavis5x@gmail.com Signed-off-by: Matteo Bruni mbruni@codeweavers.com Signed-off-by: Alexandre Julliard julliard@winehq.org (cherry picked from commit 6509f90eacae5990de63d6f9a493fb60dd1982ad) Signed-off-by: Michael Stefaniuc mstefani@winehq.org
---
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 3d0bd24..704d62a 100644 --- a/dlls/winex11.drv/opengl.c +++ b/dlls/winex11.drv/opengl.c @@ -2738,7 +2738,7 @@ static BOOL X11DRV_wglGetPixelFormatAttribivARB( HDC hdc, int iPixelFormat, int case WGL_SWAP_METHOD_ARB: if (has_swap_method) { - hTest = pglXGetFBConfigAttrib(gdi_display, fmt->fbconfig, GLX_DRAWABLE_TYPE, &tmp); + hTest = pglXGetFBConfigAttrib(gdi_display, fmt->fbconfig, GLX_SWAP_METHOD_OML, &tmp); if (hTest) goto get_error; switch (tmp) {