curvedraw
diff src/opengl.h @ 0:8e524989c904
getting there
author | John Tsiombikas <nuclear@member.fsf.org> |
---|---|
date | Tue, 15 Dec 2015 07:15:53 +0200 |
parents | |
children | 2b7ae76c173f |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/src/opengl.h Tue Dec 15 07:15:53 2015 +0200 1.3 @@ -0,0 +1,14 @@ 1.4 +#ifndef OPENGL_H_ 1.5 +#define OPENGL_H_ 1.6 + 1.7 +#ifdef WIN32 1.8 +#include <windows.h> 1.9 +#endif 1.10 + 1.11 +#ifdef __APPLE__ 1.12 +#include <OpenGL/gl.h> 1.13 +#else 1.14 +#include <GL/gl.h> 1.15 +#endif 1.16 + 1.17 +#endif // OPENGL_H_