mirror of
				https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu.git
				synced 2025-05-12 00:45:25 +00:00 
			
		
		
		
	Port #3505 from CItra
This commit is contained in:
		
							parent
							
								
									e197476344
								
							
						
					
					
						commit
						b8384c0c91
					
				@ -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();
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user