vrmodel
diff src/opengl.h @ 1:76e75cbcb758
foo
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Fri, 29 Aug 2014 23:07:59 +0300 |
parents | |
children |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/src/opengl.h Fri Aug 29 23:07:59 2014 +0300 1.3 @@ -0,0 +1,16 @@ 1.4 +#ifndef OPENGL_H_ 1.5 +#define OPENGL_H_ 1.6 + 1.7 +#include <GL/glew.h> 1.8 + 1.9 +#ifdef WIN32 1.10 +#include <windows.h> 1.11 +#endif 1.12 + 1.13 +#ifdef __APPLE__ 1.14 +#include <OpenGL/gl.h> 1.15 +#else 1.16 +#include <GL/gl.h> 1.17 +#endif 1.18 + 1.19 +#endif /* OPENGL_H_ */