summaryrefslogtreecommitdiffstats
path: root/src/video_core/engines/maxwell_3d.cpp
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2020-05-20 06:13:40 +0200
committerReinUsesLisp <reinuseslisp@airmail.cc>2020-05-27 21:53:43 +0200
commitf3f056c3b60fda242ae08f3866832dd307d537ba (patch)
tree115e9750a3c863d83f6bd4a8d6bd61635f3f70c0 /src/video_core/engines/maxwell_3d.cpp
parentmaxwell_3d: Initialize polygon modes (diff)
downloadyuzu-f3f056c3b60fda242ae08f3866832dd307d537ba.tar
yuzu-f3f056c3b60fda242ae08f3866832dd307d537ba.tar.gz
yuzu-f3f056c3b60fda242ae08f3866832dd307d537ba.tar.bz2
yuzu-f3f056c3b60fda242ae08f3866832dd307d537ba.tar.lz
yuzu-f3f056c3b60fda242ae08f3866832dd307d537ba.tar.xz
yuzu-f3f056c3b60fda242ae08f3866832dd307d537ba.tar.zst
yuzu-f3f056c3b60fda242ae08f3866832dd307d537ba.zip
Diffstat (limited to 'src/video_core/engines/maxwell_3d.cpp')
-rw-r--r--src/video_core/engines/maxwell_3d.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp
index 6113da7f8..b5a70b9fc 100644
--- a/src/video_core/engines/maxwell_3d.cpp
+++ b/src/video_core/engines/maxwell_3d.cpp
@@ -106,6 +106,8 @@ void Maxwell3D::InitializeRegisterDefaults() {
regs.rasterize_enable = 1;
regs.rt_separate_frag_data = 1;
regs.framebuffer_srgb = 1;
+ regs.line_width_aliased = 1.0f;
+ regs.line_width_smooth = 1.0f;
regs.front_face = Maxwell3D::Regs::FrontFace::ClockWise;
regs.polygon_mode_back = Maxwell3D::Regs::PolygonMode::Fill;
regs.polygon_mode_front = Maxwell3D::Regs::PolygonMode::Fill;