Commit 1f8bba0f authored by Brendan Shanks's avatar Brendan Shanks Committed by Alexandre Julliard

opengl32: Make wglSwapLayerBuffers hookable.

parent 16d2f3c8
......@@ -438,8 +438,8 @@ PROC WINAPI wglGetDefaultProcAddress( LPCSTR name )
/***********************************************************************
* wglSwapLayerBuffers (OPENGL32.@)
*/
BOOL WINAPI wglSwapLayerBuffers(HDC hdc,
UINT fuPlanes) {
BOOL WINAPI DECLSPEC_HOTPATCH wglSwapLayerBuffers(HDC hdc, UINT fuPlanes)
{
TRACE("(%p, %08x)\n", hdc, fuPlanes);
if (fuPlanes & WGL_SWAP_MAIN_PLANE) {
......
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