summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-01-20 05:22:34 +0100
committerGitHub <noreply@github.com>2020-01-20 05:22:34 +0100
commit5a077c95ce36cfe8d09985b4c34c303980c99d5a (patch)
treedbbbf3d766e4a305d11af167e105ae6f1370dc62 /src/video_core/engines
parentMerge pull request #3271 from bunnei/time-rewrite (diff)
parentvk_graphics_pipeline: Set front facing properly (diff)
downloadyuzu-5a077c95ce36cfe8d09985b4c34c303980c99d5a.tar
yuzu-5a077c95ce36cfe8d09985b4c34c303980c99d5a.tar.gz
yuzu-5a077c95ce36cfe8d09985b4c34c303980c99d5a.tar.bz2
yuzu-5a077c95ce36cfe8d09985b4c34c303980c99d5a.tar.lz
yuzu-5a077c95ce36cfe8d09985b4c34c303980c99d5a.tar.xz
yuzu-5a077c95ce36cfe8d09985b4c34c303980c99d5a.tar.zst
yuzu-5a077c95ce36cfe8d09985b4c34c303980c99d5a.zip
Diffstat (limited to 'src/video_core/engines')
-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 1d1f780e7..58dfa8033 100644
--- a/src/video_core/engines/maxwell_3d.cpp
+++ b/src/video_core/engines/maxwell_3d.cpp
@@ -91,6 +91,7 @@ void Maxwell3D::InitializeRegisterDefaults() {
regs.rasterize_enable = 1;
regs.rt_separate_frag_data = 1;
regs.framebuffer_srgb = 1;
+ regs.cull.front_face = Maxwell3D::Regs::Cull::FrontFace::ClockWise;
mme_inline[MAXWELL3D_REG_INDEX(draw.vertex_end_gl)] = true;
mme_inline[MAXWELL3D_REG_INDEX(draw.vertex_begin_gl)] = true;