diff options
author | Tony Wasserka <neobrainx@gmail.com> | 2015-05-23 14:01:06 +0200 |
---|---|---|
committer | Tony Wasserka <neobrainx@gmail.com> | 2015-05-23 14:01:06 +0200 |
commit | 5f193bbf068c8b4bf2a9200b696a574c5e1e5784 (patch) | |
tree | 23f0949dd21de0ef563e5cad68a1be917c7afca1 | |
parent | Merge pull request #804 from lioncash/dclean (diff) | |
parent | Qt: Silence a bogus warning printed when using the debug runtime (diff) | |
download | yuzu-5f193bbf068c8b4bf2a9200b696a574c5e1e5784.tar yuzu-5f193bbf068c8b4bf2a9200b696a574c5e1e5784.tar.gz yuzu-5f193bbf068c8b4bf2a9200b696a574c5e1e5784.tar.bz2 yuzu-5f193bbf068c8b4bf2a9200b696a574c5e1e5784.tar.lz yuzu-5f193bbf068c8b4bf2a9200b696a574c5e1e5784.tar.xz yuzu-5f193bbf068c8b4bf2a9200b696a574c5e1e5784.tar.zst yuzu-5f193bbf068c8b4bf2a9200b696a574c5e1e5784.zip |
-rw-r--r-- | src/citra_qt/bootmanager.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/citra_qt/bootmanager.cpp b/src/citra_qt/bootmanager.cpp index ea46bb1da..72b55e94d 100644 --- a/src/citra_qt/bootmanager.cpp +++ b/src/citra_qt/bootmanager.cpp @@ -138,7 +138,13 @@ void GRenderWindow::moveContext() void GRenderWindow::SwapBuffers() { - // MakeCurrent is already called in renderer_opengl +#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. + child->makeCurrent(); +#endif child->swapBuffers(); } |