MCPcopy Create free account
hub / github.com/Panzerschrek/Chasm-Reverse / GLDebugMessageCallback

Function GLDebugMessageCallback

PanzerChasm/system_window.cpp:101–115  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

99
100#ifdef DEBUG
101static 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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected