wined3d: Account for offscreen rendering when setting up the clearing scissor rectangle.

This commit is contained in:
Stefan Dösinger 2007-03-07 01:43:53 +01:00 committed by Alexandre Julliard
parent 603e7933ea
commit eba060463d

View File

@ -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);