istereo

view src/opengl.h @ 36:834503dcb486

fixed the rotated gui problem
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 09 Sep 2011 10:25:03 +0300
parents 2c5620f0670c
children ff055bff6a15
line source
1 #ifndef OPENGL_H_
2 #define OPENGL_H_
4 #include "config.h"
6 #ifdef IPHONE
7 #include <OpenGLES/ES2/gl.h>
8 #else
10 #include <GL/glew.h>
12 #ifdef __APPLE__
13 #include <GLUT/glut.h>
14 #else
15 #include <GL/glut.h>
16 #endif /* __APPLE__ */
18 #endif /* IPHONE */
20 #endif /* OPENGL_H_ */