diff options
Diffstat (limited to 'src/system-gl.h')
-rw-r--r-- | src/system-gl.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/system-gl.h b/src/system-gl.h new file mode 100644 index 0000000..cdbf3dc --- /dev/null +++ b/src/system-gl.h @@ -0,0 +1,11 @@ +#ifndef SYSTEMGL_H_ +#define SYSTEMGL_H_ + +#include <GL/glew.h> +#ifdef __APPLE__ +#include <OpenGL/OpenGL.h> +#else +#include <GL/gl.h> +#endif + +#endif |