Skip to content
Snippets Groups Projects
Unverified Commit 6313d54c authored by bunnei's avatar bunnei Committed by GitHub
Browse files

Merge pull request #1008 from yuzu-emu/revert-697-disable-depth-cull

Revert "gl_state: Temporarily disable culling and depth test."
parents 7e6a7396 2156cb3c
No related branches found
No related tags found
No related merge requests found
......@@ -812,9 +812,7 @@ void RasterizerOpenGL::SyncClipCoef() {
void RasterizerOpenGL::SyncCullMode() {
const auto& regs = Core::System::GetInstance().GPU().Maxwell3D().regs;
// TODO(bunnei): Enable the below once more things work - until then, this may hide regressions
// state.cull.enabled = regs.cull.enabled != 0;
state.cull.enabled = false;
state.cull.enabled = regs.cull.enabled != 0;
if (state.cull.enabled) {
state.cull.front_face = MaxwellToGL::FrontFace(regs.cull.front_face);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment