mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 12:57:52 +00:00
Revert "gl_state: Temporarily disable culling and depth test."
This commit is contained in:
parent
6828c25498
commit
2156cb3cbe
1 changed files with 1 additions and 3 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue