Revision 1001,
497 bytes
checked in by mattausch, 18 years ago
(diff) |
added mesh instance support
improved support for occlusion queries + other extensions
|
Line | |
---|
1 | //Copyright and Disclaimer: |
---|
2 | //This code is copyright Vienna University of Technology, 2004. |
---|
3 | |
---|
4 | #ifndef NO_PRAGMA_ONCE |
---|
5 | #pragma once |
---|
6 | #endif |
---|
7 | |
---|
8 | #ifndef GLINTERFACE_H |
---|
9 | #define GLINTERFACE_H |
---|
10 | |
---|
11 | |
---|
12 | //includes an openGL extension header file |
---|
13 | //http://glew.sourceforge.net/ |
---|
14 | #include "GL/glew.h" |
---|
15 | //includes the glut header file |
---|
16 | #include "GL/glut.h" |
---|
17 | |
---|
18 | //includes windows specific stuff |
---|
19 | #ifdef _WIN32 |
---|
20 | #include "GL/wglew.h" |
---|
21 | #else |
---|
22 | //include linux specific stuff |
---|
23 | #include "GL/glxew.h" |
---|
24 | #endif |
---|
25 | |
---|
26 | |
---|
27 | #endif // GLINTERFACE_H |
---|
Note: See
TracBrowser
for help on using the repository browser.