Commit b25b287e authored by Roderick Colenbrander's avatar Roderick Colenbrander Committed by Alexandre Julliard

wgl: Support WGL_FLOAT_COMPONENTS_NV in wglGetPixelFormatAttrib*.

parent 5717dede
...@@ -2679,6 +2679,10 @@ static GLboolean WINAPI X11DRV_wglGetPixelFormatAttribivARB(HDC hdc, int iPixelF ...@@ -2679,6 +2679,10 @@ static GLboolean WINAPI X11DRV_wglGetPixelFormatAttribivARB(HDC hdc, int iPixelF
curGLXAttr = GLX_SAMPLES_ARB; curGLXAttr = GLX_SAMPLES_ARB;
break; break;
case WGL_FLOAT_COMPONENTS_NV:
curGLXAttr = GLX_FLOAT_COMPONENTS_NV;
break;
default: default:
FIXME("unsupported %x WGL Attribute\n", curWGLAttr); FIXME("unsupported %x WGL Attribute\n", curWGLAttr);
} }
......
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