curvedraw

view 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 source
1 #ifndef OPENGL_H_
2 #define OPENGL_H_
4 #ifdef WIN32
5 #include <windows.h>
6 #endif
8 #ifdef __APPLE__
9 #include <OpenGL/gl.h>
10 #else
11 #include <GL/gl.h>
12 #endif
14 #endif // OPENGL_H_