]> git.tdb.fi Git - libs/gl.git/blob - source/gl.h
Final touches of OS X support
[libs/gl.git] / source / gl.h
1 #ifndef MSP_GL_GL_H_
2 #define MSP_GL_GL_H_
3
4 #ifdef WIN32
5 #include <windows.h>
6 #endif
7 #ifdef __APPLE__
8 #include <OpenGL/gl.h>
9 #include <OpenGL/glext.h>
10 #else
11 #include <GL/gl.h>
12 #include <GL/glext.h>
13 #endif
14
15 #endif