clray

diff 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
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/ogl.h	Sat Aug 07 03:36:36 2010 +0100
     1.3 @@ -0,0 +1,19 @@
     1.4 +#ifndef OGL_H_
     1.5 +#define OGL_H_
     1.6 +
     1.7 +#ifndef __APPLE__
     1.8 +
     1.9 +#if defined(WIN32) || defined(__WIN32__)
    1.10 +#include <windows.h>
    1.11 +#endif
    1.12 +
    1.13 +#include <GL/gl.h>
    1.14 +#include <GL/glu.h>
    1.15 +
    1.16 +#else	/* __APPLE__ */
    1.17 +#include <OpenGL/gl.h>
    1.18 +#include <OpenGL/glu.h>
    1.19 +#endif
    1.20 +
    1.21 +
    1.22 +#endif	/* OGL_H_ */