diff options
author | bunnei <bunneidev@gmail.com> | 2020-06-01 22:11:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-01 22:11:56 +0200 |
commit | bb6d93630f8785a94de624a30334251ccbac0b65 (patch) | |
tree | 914ab192be87e28c0599c41dc5f5526a09e4dea0 /src | |
parent | Merge pull request #4005 from ReinUsesLisp/g24r8 (diff) | |
parent | maxwell_3d: Initialize line widths (diff) | |
download | yuzu-bb6d93630f8785a94de624a30334251ccbac0b65.tar yuzu-bb6d93630f8785a94de624a30334251ccbac0b65.tar.gz yuzu-bb6d93630f8785a94de624a30334251ccbac0b65.tar.bz2 yuzu-bb6d93630f8785a94de624a30334251ccbac0b65.tar.lz yuzu-bb6d93630f8785a94de624a30334251ccbac0b65.tar.xz yuzu-bb6d93630f8785a94de624a30334251ccbac0b65.tar.zst yuzu-bb6d93630f8785a94de624a30334251ccbac0b65.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/engines/maxwell_3d.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/video_core/engines/maxwell_3d.cpp b/src/video_core/engines/maxwell_3d.cpp index 004f6b261..13ef2e42d 100644 --- a/src/video_core/engines/maxwell_3d.cpp +++ b/src/video_core/engines/maxwell_3d.cpp @@ -106,7 +106,11 @@ 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; shadow_state = regs; |