Practical Tools for Simple Design
Loading...
Searching...
No Matches
DebugMessageCallback.hpp
1#ifndef CORE_DEBUG_MESSAGE_CALLBACK_HPP
2#define CORE_DEBUG_MESSAGE_CALLBACK_HPP
3
4#include "pch.hpp" // IWYU pragma: export
5
6namespace Core {
15void GLAPIENTRY OpenGLDebugMessageCallback(GLenum source, GLenum type,
16 GLuint id, // NOLINT
17 GLenum severity, GLsizei length,
18 const GLchar *message,
19 const void *data);
20} // namespace Core
21
22#endif
Core functionality of the framework
Definition: config.hpp:7
void GLAPIENTRY OpenGLDebugMessageCallback(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLchar *message, const void *data)
Callback function for OpenGL handling.