16 lines
384 B
C++
16 lines
384 B
C++
#ifndef RENDERER_DEBUG_
|
|
#define RENDERER_DEBUG_
|
|
|
|
#include <iostream>
|
|
|
|
#include <GL/glew.h>
|
|
|
|
void MessageCallback(GLenum source,
|
|
GLenum type,
|
|
GLuint id,
|
|
GLenum severity,
|
|
GLsizei length,
|
|
const GLchar* message,
|
|
const void* userParam);
|
|
|
|
#endif // RENDERER_DEBUG_
|