diff options
author | bunnei <bunneidev@gmail.com> | 2019-05-17 19:04:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-17 19:04:04 +0200 |
commit | 865025f612599e2560213d2326b2b8f5abe8b9e8 (patch) | |
tree | e5afcab6bb3041e4c203472a4e2a9393845e3520 | |
parent | Merge pull request #2479 from ReinUsesLisp/qt-shadow (diff) | |
parent | yuzu_cmd: Use OpenGL compat when asked in the settings (diff) | |
download | yuzu-865025f612599e2560213d2326b2b8f5abe8b9e8.tar yuzu-865025f612599e2560213d2326b2b8f5abe8b9e8.tar.gz yuzu-865025f612599e2560213d2326b2b8f5abe8b9e8.tar.bz2 yuzu-865025f612599e2560213d2326b2b8f5abe8b9e8.tar.lz yuzu-865025f612599e2560213d2326b2b8f5abe8b9e8.tar.xz yuzu-865025f612599e2560213d2326b2b8f5abe8b9e8.tar.zst yuzu-865025f612599e2560213d2326b2b8f5abe8b9e8.zip |
Diffstat (limited to '')
-rw-r--r-- | src/yuzu_cmd/emu_window/emu_window_sdl2.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp b/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp index 68a176032..8f104062d 100644 --- a/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp +++ b/src/yuzu_cmd/emu_window/emu_window_sdl2.cpp @@ -176,9 +176,13 @@ EmuWindow_SDL2::EmuWindow_SDL2(bool fullscreen) { SDL_SetMainReady(); + const SDL_GLprofile profile = Settings::values.use_compatibility_profile + ? SDL_GL_CONTEXT_PROFILE_COMPATIBILITY + : SDL_GL_CONTEXT_PROFILE_CORE; + SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 4); SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 3); - SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_CORE); + SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, profile); SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1); SDL_GL_SetAttribute(SDL_GL_RED_SIZE, 8); SDL_GL_SetAttribute(SDL_GL_GREEN_SIZE, 8); |