diff options
author | fearlessTobi <thm.frey@gmail.com> | 2018-09-06 18:57:51 +0200 |
---|---|---|
committer | fearlessTobi <thm.frey@gmail.com> | 2018-09-06 18:57:51 +0200 |
commit | 742f895f8b063ac59e585f3e2115fd733171c9c2 (patch) | |
tree | 1600de956644d260a901048c1dac38be782474f7 /src/yuzu | |
parent | 77554ac773956e01ba1c9c779f1a2c4f4bde3324 (diff) |
frontend: Set swap interval to 0
Diffstat (limited to 'src/yuzu')
-rw-r--r-- | src/yuzu/bootmanager.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/yuzu/bootmanager.cpp b/src/yuzu/bootmanager.cpp index 159b2c32b..4a60f450a 100644 --- a/src/yuzu/bootmanager.cpp +++ b/src/yuzu/bootmanager.cpp @@ -256,6 +256,7 @@ void GRenderWindow::InitRenderTarget() { QGLFormat fmt; fmt.setVersion(3, 3); fmt.setProfile(QGLFormat::CoreProfile); + fmt.setSwapInterval(false); // Requests a forward-compatible context, which is required to get a 3.2+ context on OS X fmt.setOption(QGL::NoDeprecatedFunctions); |