mirror of https://github.com/PCSX2/pcsx2.git
gsdx-ogl: disable useless Nvidia driver message
This commit is contained in:
parent
d67ba015c5
commit
ef3aa17025
|
@ -204,6 +204,9 @@ bool GSDeviceOGL::Create(GSWnd* wnd)
|
|||
}
|
||||
if (glDebugMessageControl) {
|
||||
glDebugMessageControl(GL_DONT_CARE, GL_DONT_CARE, GL_DONT_CARE, 0, NULL, true);
|
||||
// Useless info message on Nvidia driver
|
||||
GLuint ids[] = {0x20004};
|
||||
glDebugMessageControl(GL_DEBUG_SOURCE_API_ARB, GL_DEBUG_TYPE_OTHER_ARB, GL_DONT_CARE, countof(ids), ids, false);
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue