diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-01-06 21:20:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-06 21:20:23 +0100 |
commit | c0f17e1b272a4f235707c9e1a67f009d4ccd05f7 (patch) | |
tree | 595912548c52bc434c46d20c0bcb9fb5c3084b4e /src/video_core | |
parent | Merge pull request #9566 from Wollnashorn/vulkan-cache-header-fix (diff) | |
parent | opengl: Sanitize antialiasing config (diff) | |
download | yuzu-c0f17e1b272a4f235707c9e1a67f009d4ccd05f7.tar yuzu-c0f17e1b272a4f235707c9e1a67f009d4ccd05f7.tar.gz yuzu-c0f17e1b272a4f235707c9e1a67f009d4ccd05f7.tar.bz2 yuzu-c0f17e1b272a4f235707c9e1a67f009d4ccd05f7.tar.lz yuzu-c0f17e1b272a4f235707c9e1a67f009d4ccd05f7.tar.xz yuzu-c0f17e1b272a4f235707c9e1a67f009d4ccd05f7.tar.zst yuzu-c0f17e1b272a4f235707c9e1a67f009d4ccd05f7.zip |
Diffstat (limited to 'src/video_core')
-rw-r--r-- | src/video_core/renderer_opengl/renderer_opengl.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/video_core/renderer_opengl/renderer_opengl.cpp b/src/video_core/renderer_opengl/renderer_opengl.cpp index bc75680f0..de95f2634 100644 --- a/src/video_core/renderer_opengl/renderer_opengl.cpp +++ b/src/video_core/renderer_opengl/renderer_opengl.cpp @@ -442,7 +442,13 @@ void RendererOpenGL::DrawScreen(const Layout::FramebufferLayout& layout) { glBindTextureUnit(0, screen_info.display_texture); - const auto anti_aliasing = Settings::values.anti_aliasing.GetValue(); + auto anti_aliasing = Settings::values.anti_aliasing.GetValue(); + if (anti_aliasing > Settings::AntiAliasing::LastAA) { + LOG_ERROR(Render_OpenGL, "Invalid antialiasing option selected {}", anti_aliasing); + anti_aliasing = Settings::AntiAliasing::None; + Settings::values.anti_aliasing.SetValue(anti_aliasing); + } + if (anti_aliasing != Settings::AntiAliasing::None) { glEnablei(GL_SCISSOR_TEST, 0); auto viewport_width = screen_info.texture.width; |