clray

annotate src/ogl.h @ 14:29f9330cfa4b

trying to debug the bloody thing
author John Tsiombikas
date Sat, 07 Aug 2010 03:36:36 +0100
parents
children 1ae68d46cfda
rev   line source
John@14 1 #ifndef OGL_H_
John@14 2 #define OGL_H_
John@14 3
John@14 4 #ifndef __APPLE__
John@14 5
John@14 6 #if defined(WIN32) || defined(__WIN32__)
John@14 7 #include <windows.h>
John@14 8 #endif
John@14 9
John@14 10 #include <GL/gl.h>
John@14 11 #include <GL/glu.h>
John@14 12
John@14 13 #else /* __APPLE__ */
John@14 14 #include <OpenGL/gl.h>
John@14 15 #include <OpenGL/glu.h>
John@14 16 #endif
John@14 17
John@14 18
John@14 19 #endif /* OGL_H_ */