mirror of
				https://github.com/PabloMK7/citra.git
				synced 2025-10-31 05:40:04 +00:00 
			
		
		
		
	Merge pull request #806 from yuriks/annoying-qt-warning
Qt: Silence a bogus warning printed when using the debug runtime
This commit is contained in:
		
						commit
						5f193bbf06
					
				
					 1 changed files with 7 additions and 1 deletions
				
			
		|  | @ -138,7 +138,13 @@ void GRenderWindow::moveContext() | ||||||
| 
 | 
 | ||||||
| void GRenderWindow::SwapBuffers() | 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(); |     child->swapBuffers(); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue