| 99 | |
| 100 | #ifdef DEBUG |
| 101 | static void APIENTRY GLDebugMessageCallback( |
| 102 | GLenum source, GLenum type, |
| 103 | GLuint id, |
| 104 | GLenum severity, |
| 105 | GLsizei length, const GLchar* message, |
| 106 | const void* userParam ) |
| 107 | { |
| 108 | (void)source; |
| 109 | (void)type; |
| 110 | (void)id; |
| 111 | (void)severity; |
| 112 | (void)length; |
| 113 | (void)userParam; |
| 114 | Log::Info( message ); |
| 115 | } |
| 116 | #endif |
| 117 | |
| 118 |
nothing calls this directly
no outgoing calls
no test coverage detected