diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-05-18 03:24:44 +0200 |
---|---|---|
committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-05-18 03:45:09 +0200 |
commit | 4cff5dd1940cf8eded9daa445c16c90c89720a4a (patch) | |
tree | f9f59f05e62b4bb4e8c9091d6694744011870d09 /src/yuzu_cmd/emu_window | |
parent | Merge pull request #3665 from bunnei/device-save (diff) | |
download | yuzu-4cff5dd1940cf8eded9daa445c16c90c89720a4a.tar yuzu-4cff5dd1940cf8eded9daa445c16c90c89720a4a.tar.gz yuzu-4cff5dd1940cf8eded9daa445c16c90c89720a4a.tar.bz2 yuzu-4cff5dd1940cf8eded9daa445c16c90c89720a4a.tar.lz yuzu-4cff5dd1940cf8eded9daa445c16c90c89720a4a.tar.xz yuzu-4cff5dd1940cf8eded9daa445c16c90c89720a4a.tar.zst yuzu-4cff5dd1940cf8eded9daa445c16c90c89720a4a.zip |
Diffstat (limited to '')
-rw-r--r-- | src/yuzu_cmd/emu_window/emu_window_sdl2_gl.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/yuzu_cmd/emu_window/emu_window_sdl2_gl.cpp b/src/yuzu_cmd/emu_window/emu_window_sdl2_gl.cpp index 411e7e647..09cc0a3b5 100644 --- a/src/yuzu_cmd/emu_window/emu_window_sdl2_gl.cpp +++ b/src/yuzu_cmd/emu_window/emu_window_sdl2_gl.cpp @@ -98,6 +98,9 @@ EmuWindow_SDL2_GL::EmuWindow_SDL2_GL(Core::System& system, bool fullscreen) SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 8); SDL_GL_SetAttribute(SDL_GL_ALPHA_SIZE, 0); SDL_GL_SetAttribute(SDL_GL_SHARE_WITH_CURRENT_CONTEXT, 1); + if (Settings::values.renderer_debug) { + SDL_GL_SetAttribute(SDL_GL_CONTEXT_FLAGS, SDL_GL_CONTEXT_DEBUG_FLAG); + } SDL_GL_SetSwapInterval(0); std::string window_title = fmt::format("yuzu {} | {}-{}", Common::g_build_fullname, |