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

pull/8/head
Subv 7 years ago
parent 92c7135065
commit 65c664560c

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

Loading…
Cancel
Save