GPU: Don't try to parse the depth test function if the depth test is disabled.

This commit is contained in:
Subv 2018-07-02 21:02:46 -05:00
parent 92c7135065
commit 65c664560c

View file

@ -735,6 +735,10 @@ void RasterizerOpenGL::SyncDepthTestState() {
state.depth.test_enabled = regs.depth_test_enable != 0;
state.depth.write_mask = regs.depth_write_enabled ? GL_TRUE : GL_FALSE;
if (!state.depth.test_enabled)
return;
state.depth.test_func = MaxwellToGL::ComparisonOp(regs.depth_test_func);
}