Backends/Rendering/OpenGL: Replaced printf with Backend_PrintInfo

Signed-off-by: Gabriel Ravier <gabravier@gmail.com>
This commit is contained in:
Gabriel Ravier 2020-04-12 00:46:05 +02:00
parent dcd4bcf1b2
commit 89fb2222b6

View file

@ -252,7 +252,7 @@ static void GLAPIENTRY MessageCallback(GLenum source, GLenum type, GLuint id, GL
(void)userParam; (void)userParam;
if (severity != GL_DEBUG_SEVERITY_NOTIFICATION) if (severity != GL_DEBUG_SEVERITY_NOTIFICATION)
printf("OpenGL debug: %s\n", message); Backend_PrintInfo("OpenGL debug: %s", message);
} }
*/ */
// ==================== // ====================