summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorReinUsesLisp <reinuseslisp@airmail.cc>2020-05-20 01:13:40 -0300
committerReinUsesLisp <reinuseslisp@airmail.cc>2020-05-27 16:53:43 -0300
commitf3f056c3b60fda242ae08f3866832dd307d537ba (patch)
tree115e9750a3c863d83f6bd4a8d6bd61635f3f70c0 /src
parent31eb658fea6ecae8fb4f0dde5abdeb1d8eb44ae0 (diff)
maxwell_3d: Initialize line widths
Initialize line widths to avoid setting a line width of zero.
Diffstat (limited to 'src')
-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;