curvedraw

view src/opengl.h @ 14:b625f0575d66

point snapping
author John Tsiombikas <nuclear@member.fsf.org>
date Thu, 17 Dec 2015 16:41:42 +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_