mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-28 12:23:28 +00:00
- handle WGL_SWAP_MAIN_PLANE flag in rosglSwapLayerBuffers
svn path=/trunk/; revision=43131
This commit is contained in:
@@ -1195,9 +1195,15 @@ BOOL
|
||||
APIENTRY
|
||||
rosglSwapLayerBuffers( HDC hdc, UINT fuPlanes )
|
||||
{
|
||||
UNIMPLEMENTED;
|
||||
SetLastError( ERROR_CALL_NOT_IMPLEMENTED );
|
||||
return FALSE;
|
||||
BOOL ret = FALSE;
|
||||
|
||||
if(fuPlanes & WGL_SWAP_MAIN_PLANE)
|
||||
ret = rosglSwapBuffers(hdc);
|
||||
|
||||
if(fuPlanes &~WGL_SWAP_MAIN_PLANE)
|
||||
DBGTRACE("wglSwapLayerBuffers is not fully implemented\n");
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user