diff options
| -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() { | |||
| 106 | regs.rasterize_enable = 1; | 106 | regs.rasterize_enable = 1; |
| 107 | regs.rt_separate_frag_data = 1; | 107 | regs.rt_separate_frag_data = 1; |
| 108 | regs.framebuffer_srgb = 1; | 108 | regs.framebuffer_srgb = 1; |
| 109 | regs.line_width_aliased = 1.0f; | ||
| 110 | regs.line_width_smooth = 1.0f; | ||
| 109 | regs.front_face = Maxwell3D::Regs::FrontFace::ClockWise; | 111 | regs.front_face = Maxwell3D::Regs::FrontFace::ClockWise; |
| 112 | regs.polygon_mode_back = Maxwell3D::Regs::PolygonMode::Fill; | ||
| 113 | regs.polygon_mode_front = Maxwell3D::Regs::PolygonMode::Fill; | ||
| 110 | 114 | ||
| 111 | shadow_state = regs; | 115 | shadow_state = regs; |
| 112 | 116 | ||