diff options
author | bunnei <bunneidev@gmail.com> | 2020-05-31 17:04:27 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-31 17:04:27 -0400 |
commit | edbf3144d20e5e96db0f54a96b5191156d7113a0 (patch) | |
tree | 5cd4ae8bb9da3acebd3418c998ad75c10ba971dc /src/yuzu/bootmanager.cpp | |
parent | f7debcaa047b2216664fc13fa280c1d9b62214a8 (diff) | |
parent | 4cff5dd1940cf8eded9daa445c16c90c89720a4a (diff) |
Merge pull request #3958 from FernandoS27/gl-debug
OpenGL: Enable Debug Context and Synchronous debugging when graphics debugging is enabled
Diffstat (limited to 'src/yuzu/bootmanager.cpp')
-rw-r--r-- | src/yuzu/bootmanager.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/yuzu/bootmanager.cpp b/src/yuzu/bootmanager.cpp index 1adf8932b..1f5e43043 100644 --- a/src/yuzu/bootmanager.cpp +++ b/src/yuzu/bootmanager.cpp @@ -106,6 +106,9 @@ public: format.setVersion(4, 3); format.setProfile(QSurfaceFormat::CompatibilityProfile); format.setOption(QSurfaceFormat::FormatOption::DeprecatedFunctions); + if (Settings::values.renderer_debug) { + format.setOption(QSurfaceFormat::FormatOption::DebugContext); + } // TODO: expose a setting for buffer value (ie default/single/double/triple) format.setSwapBehavior(QSurfaceFormat::DefaultSwapBehavior); format.setSwapInterval(0); |