mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 21:20:25 +00:00
wined3d: Account for offscreen rendering when setting up the clearing scissor rectangle.
This commit is contained in:
parent
603e7933ea
commit
eba060463d
@ -4221,8 +4221,13 @@ static HRESULT WINAPI IWineD3DDeviceImpl_Clear(IWineD3DDevice *iface, DWORD Coun
|
||||
continue;
|
||||
}
|
||||
|
||||
if(This->render_offscreen) {
|
||||
glScissor(curRect[i].x1, curRect[i].y1,
|
||||
curRect[i].x2 - curRect[i].x1, curRect[i].y2 - curRect[i].y1);
|
||||
} else {
|
||||
glScissor(curRect[i].x1, target->currentDesc.Height - curRect[i].y2,
|
||||
curRect[i].x2 - curRect[i].x1, curRect[i].y2 - curRect[i].y1);
|
||||
}
|
||||
checkGLcall("glScissor");
|
||||
|
||||
glClear(glMask);
|
||||
|
Loading…
Reference in New Issue
Block a user