summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorFernando Sahmkow <fsahmkow27@gmail.com>2022-12-05 17:14:34 +0100
committerFernando Sahmkow <fsahmkow27@gmail.com>2023-01-01 22:43:58 +0100
commitf800e485c9bcd98e08128db974540e7ba0324128 (patch)
treec931bf1f7e8aa04d6f0ea6c110dedc1c10642cab /src/video_core/engines
parentVulkan: Implement Dynamic States 2 (diff)
downloadyuzu-f800e485c9bcd98e08128db974540e7ba0324128.tar
yuzu-f800e485c9bcd98e08128db974540e7ba0324128.tar.gz
yuzu-f800e485c9bcd98e08128db974540e7ba0324128.tar.bz2
yuzu-f800e485c9bcd98e08128db974540e7ba0324128.tar.lz
yuzu-f800e485c9bcd98e08128db974540e7ba0324128.tar.xz
yuzu-f800e485c9bcd98e08128db974540e7ba0324128.tar.zst
yuzu-f800e485c9bcd98e08128db974540e7ba0324128.zip
Diffstat (limited to '')
-rw-r--r--src/video_core/engines/maxwell_3d.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp
index d44a5cabf..7f406e171 100644
--- a/src/video_core/engines/maxwell_3d.cpp
+++ b/src/video_core/engines/maxwell_3d.cpp
@@ -124,6 +124,7 @@ void Maxwell3D::InitializeRegisterDefaults() {
regs.gl_front_face = Maxwell3D::Regs::FrontFace::ClockWise;
regs.polygon_mode_back = Maxwell3D::Regs::PolygonMode::Fill;
regs.polygon_mode_front = Maxwell3D::Regs::PolygonMode::Fill;
+ regs.logic_op.op = Maxwell3D::Regs::LogicOp::Op::Clear;
shadow_state = regs;
}