diff options
author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-05-20 06:13:40 +0200 |
---|---|---|
committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-05-27 21:53:43 +0200 |
commit | f3f056c3b60fda242ae08f3866832dd307d537ba (patch) | |
tree | 115e9750a3c863d83f6bd4a8d6bd61635f3f70c0 | |
parent | maxwell_3d: Initialize polygon modes (diff) | |
download | yuzu-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 |
-rw-r--r-- | src/video_core/engines/maxwell_3d.cpp | 2 |
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; |