Commit 374a7abd authored by Lionel Ulmer's avatar Lionel Ulmer Committed by Alexandre Julliard

Implement wglCreateLayerContext for layer 0.

parent 5cb15cda
......@@ -163,7 +163,12 @@ HGLRC WINAPI wglCreateContext(HDC hdc)
*/
HGLRC WINAPI wglCreateLayerContext(HDC hdc,
int iLayerPlane) {
FIXME("(%p,%d): stub !\n", hdc, iLayerPlane);
TRACE("(%p,%d)\n", hdc, iLayerPlane);
if (iLayerPlane == 0) {
return wglCreateContext(hdc);
}
FIXME(" no handler for layer %d\n", iLayerPlane);
return NULL;
}
......
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