clray

view src/ogl.h @ 27:8b2f2ad14ae7

semi-fixed the kdtree construction
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 17 Aug 2010 20:35:00 +0100
parents
children 1ae68d46cfda
line source
1 #ifndef OGL_H_
2 #define OGL_H_
4 #ifndef __APPLE__
6 #if defined(WIN32) || defined(__WIN32__)
7 #include <windows.h>
8 #endif
10 #include <GL/gl.h>
11 #include <GL/glu.h>
13 #else /* __APPLE__ */
14 #include <OpenGL/gl.h>
15 #include <OpenGL/glu.h>
16 #endif
19 #endif /* OGL_H_ */