diff options
author | don bright <hugh.m.bright@gmail.com> | 2013-01-24 03:10:24 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2013-01-24 03:10:24 (GMT) |
commit | 009baca90428399d4e3540bff18510ef51a28454 (patch) | |
tree | c4e377bae63557c060718557186a7484b922edcc /src/system-gl.h | |
parent | e7ea8e12a933849bc6cb9efda5fbb2ac6ddbccab (diff) |
move imageutils platform stuff to qmake build file mv system-gl. fix gcc warning
Diffstat (limited to 'src/system-gl.h')
-rw-r--r-- | src/system-gl.h | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/src/system-gl.h b/src/system-gl.h index d7de3c6..4a8ccac 100644 --- a/src/system-gl.h +++ b/src/system-gl.h @@ -2,15 +2,9 @@ #define SYSTEMGL_H_ #include <GL/glew.h> +#include <string> -#ifdef __APPLE__ - #include <OpenGL/OpenGL.h> -#else - #include <GL/gl.h> - #include <GL/glu.h> - #ifdef _WIN32 - #include <windows.h> // For the CALLBACK macro - #endif -#endif +std::string glew_dump(bool dumpall=false); +bool report_glerror(const char *task); #endif |