diff options
author | bunnei <bunneidev@gmail.com> | 2018-07-09 17:07:30 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-07-09 17:07:30 -0700 |
commit | dacc89b38b8b5194e9c8c911d5624df870477e5d (patch) | |
tree | 8accffa847159fabcab7584a362366326c59b4dd | |
parent | 51a3e93f8e0e6541210649aa9f4af86e61c0381b (diff) | |
parent | b8384c0c9199c00b06a03265ce75d684e2c1310f (diff) |
Merge pull request #634 from FearlessTobi/port-viewport-fix
Port #3505 from Citra: Fix QGLWidget viewport resize on macOS
-rw-r--r-- | src/yuzu/bootmanager.cpp | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/yuzu/bootmanager.cpp b/src/yuzu/bootmanager.cpp index 5c17cd0d9..833085559 100644 --- a/src/yuzu/bootmanager.cpp +++ b/src/yuzu/bootmanager.cpp @@ -127,13 +127,14 @@ void GRenderWindow::moveContext() { } void GRenderWindow::SwapBuffers() { -#if !defined(QT_NO_DEBUG) - // Qt debug runtime prints a bogus warning on the console if you haven't called makeCurrent - // since the last time you called swapBuffers. This presumably means something if you're using - // QGLWidget the "regular" way, but in our multi-threaded use case is harmless since we never - // call doneCurrent in this thread. + // In our multi-threaded QGLWidget use case we shouldn't need to call `makeCurrent`, + // since we never call `doneCurrent` in this thread. + // However: + // - The Qt debug runtime prints a bogus warning on the console if `makeCurrent` wasn't called + // since the last time `swapBuffers` was executed; + // - On macOS, if `makeCurrent` isn't called explicitely, resizing the buffer breaks. child->makeCurrent(); -#endif + child->swapBuffers(); } |