Addons updated to new doc format
[io.git] / addons / OpenGL / source / GLIncludes.h
blob3c46ad1229817333f0dd92834569b9e5f4380721
1 //metadoc GLIncludes copyright Steve Dekorte 2002
2 //metadoc GLIncludes license BSD revised
4 #ifndef GLINCLUDES_DEFINED
5 #define GLINCLUDES_DEFINED 1
7 #if defined(__APPLE__) || defined(MACOSX)
8 #include <GLUT/glut.h>
9 #include <OpenGL/glu.h>
10 #include <OpenGL/gl.h>
11 #else
12 #ifdef _WIN32
13 #include <windows.h>
14 #include <GL/gl.h>
15 #include <GL/glut.h>
16 #include <GL/glu.h>
17 #define GL_CONSTANT_COLOR 0x8001
18 #define GL_ONE_MINUS_CONSTANT_COLOR 0x8002
19 #define GL_CONSTANT_ALPHA 0x8003
20 #define GL_ONE_MINUS_CONSTANT_ALPHA 0x8004
21 #define GL_BLEND_COLOR 0x8005
22 #else
23 #include <GL/glut.h>
24 #include <GL/glu.h>
25 #include <GL/gl.h>
26 #endif
27 #endif
30 #endif