summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar fearlessTobi2018-07-07 14:11:49 +0200
committerGravatar fearlessTobi2018-07-07 14:11:49 +0200
commitb8384c0c9199c00b06a03265ce75d684e2c1310f (patch)
treee89106b71790b245f4999900d129199990bcd918 /src
parentMerge pull request #631 from lioncash/dynarmic (diff)
downloadyuzu-b8384c0c9199c00b06a03265ce75d684e2c1310f.tar.gz
yuzu-b8384c0c9199c00b06a03265ce75d684e2c1310f.tar.xz
yuzu-b8384c0c9199c00b06a03265ce75d684e2c1310f.zip
Port #3505 from CItra
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/bootmanager.cpp13
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() {
127} 127}
128 128
129void GRenderWindow::SwapBuffers() { 129void GRenderWindow::SwapBuffers() {
130#if !defined(QT_NO_DEBUG) 130 // In our multi-threaded QGLWidget use case we shouldn't need to call `makeCurrent`,
131 // Qt debug runtime prints a bogus warning on the console if you haven't called makeCurrent 131 // since we never call `doneCurrent` in this thread.
132 // since the last time you called swapBuffers. This presumably means something if you're using 132 // However:
133 // QGLWidget the "regular" way, but in our multi-threaded use case is harmless since we never 133 // - The Qt debug runtime prints a bogus warning on the console if `makeCurrent` wasn't called
134 // call doneCurrent in this thread. 134 // since the last time `swapBuffers` was executed;
135 // - On macOS, if `makeCurrent` isn't called explicitely, resizing the buffer breaks.
135 child->makeCurrent(); 136 child->makeCurrent();
136#endif 137
137 child->swapBuffers(); 138 child->swapBuffers();
138} 139}
139 140