mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-21 03:54:57 +00:00
OpenGL: Mute nvidia performance warning about stalling the GPU.
They are right, our perf query implementation is terrible. But raising a warning makes it just even slower.
This commit is contained in:
parent
90d551e0d1
commit
afb0beb9ab
1 changed files with 5 additions and 0 deletions
|
@ -84,6 +84,11 @@ static void APIENTRY ErrorCallback(GLenum source, GLenum type, GLuint id, GLenum
|
|||
const char* s_source;
|
||||
const char* s_type;
|
||||
|
||||
// Performance - DualCore driver performance warning:
|
||||
// DualCore application thread syncing with server thread
|
||||
if (id == 0x200b0)
|
||||
return;
|
||||
|
||||
switch (source)
|
||||
{
|
||||
case GL_DEBUG_SOURCE_API_ARB:
|
||||
|
|
Loading…
Add table
Reference in a new issue