Initial commit
This commit is contained in:
commit
edfc5298e1
252 changed files with 93965 additions and 0 deletions
11
source/Graphics/GL/CheckError.h
Normal file
11
source/Graphics/GL/CheckError.h
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
|
||||
#ifndef SPECTRE_GRAPHICS_GL_CHECKERROR_H
|
||||
#define SPECTRE_GRAPHICS_GL_CHECKERROR_H
|
||||
|
||||
#include <Spectre/Graphics/OpenGL.h>
|
||||
|
||||
#define checkGLError(expr) do { expr; glCheckError(__FILE__, __LINE__, #expr); } while(false)
|
||||
|
||||
void glCheckError(const char *file, unsigned int line, const char *expr);
|
||||
|
||||
#endif /* SPECTRE_GRAPHICS_GL_CHECKERROR_H */
|
||||
Loading…
Add table
Add a link
Reference in a new issue