istereo
view src/opengl.h @ 21:75a63f9ab7cc
ha!
author | John Tsiombikas <nuclear@mutantstargoat.com> |
---|---|
date | Wed, 07 Sep 2011 10:49:11 +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_ */