mirror of https://github.com/xemu-project/xemu.git
masks must be reset for clear
This commit is contained in:
parent
3a35fc06b1
commit
c36d60100f
|
@ -4002,6 +4002,10 @@ static void pgraph_method(NV2AState *d,
|
|||
(parameter & (NV097_CLEAR_SURFACE_Z | NV097_CLEAR_SURFACE_STENCIL));
|
||||
pgraph_update_surface(d, true, write_color, write_zeta);
|
||||
|
||||
glColorMask(true, true, true, true);
|
||||
glDepthMask(true);
|
||||
glStencilMask(0xff);
|
||||
|
||||
glEnable(GL_SCISSOR_TEST);
|
||||
|
||||
unsigned int xmin = GET_MASK(d->pgraph.regs[NV_PGRAPH_CLEARRECTX],
|
||||
|
|
Loading…
Reference in New Issue