diff options
author | Marius Kintel <marius@kintel.net> | 2011-10-04 21:24:32 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2011-10-04 21:24:32 (GMT) |
commit | 6395435db71d279a83ea4a484fd13a3cf913d593 (patch) | |
tree | 2ab4e0ceeea7d5fac2589dfc3ab3e105d59d8332 /tests/system-gl.h | |
parent | 46ccaf371609cf8a32753c75db5dd3eb35ae27c0 (diff) |
Clean up the fbo component, fix related issues
Diffstat (limited to 'tests/system-gl.h')
-rw-r--r-- | tests/system-gl.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/system-gl.h b/tests/system-gl.h index ddc2cf2..0f983cf 100644 --- a/tests/system-gl.h +++ b/tests/system-gl.h @@ -1,14 +1,6 @@ #ifndef SYSTEMGL_H_ #define SYSTEMGL_H_ -#ifdef __APPLE__ -#include <OpenGL/OpenGL.h> -#include <OpenGL/glu.h> // for gluCheckExtension -#else #include <GL/glew.h> -#include <GL/gl.h> -#endif - -#define REPORTGLERROR(task) { GLenum tGLErr = glGetError(); if (tGLErr != GL_NO_ERROR) { std::cout << "OpenGL error " << tGLErr << " while " << task << "\n"; } } #endif |