3dphotoshoot

view src/opengl.h @ 10:c71c477521ca

converting to GLES2 and C++
author John Tsiombikas <nuclear@member.fsf.org>
date Sun, 31 May 2015 00:40:26 +0300
parents e31e23ead56f
children ad49e1f9b627
line source
1 #ifndef OPENGL_H_
2 #define OPENGL_H_
5 #ifdef ANDROID
6 #include <GLES2/gl2.h>
7 #include <GLES2/gl2ext.h>
8 #else
9 #include <GL/glew.h>
10 #endif
12 #endif /* OPENGL_H_ */