cloth

diff src/opengl.h @ 0:92983e143a03

initial commit
author John Tsiombikas <nuclear@member.fsf.org>
date Mon, 11 Feb 2013 19:40:36 +0200
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/opengl.h	Mon Feb 11 19:40:36 2013 +0200
     1.3 @@ -0,0 +1,12 @@
     1.4 +#ifndef OPENGL_H_
     1.5 +#define OPENGL_H_
     1.6 +
     1.7 +#include <GL/glew.h>
     1.8 +
     1.9 +#ifdef __APPLE__
    1.10 +#include <GLUT/glut.h>
    1.11 +#else
    1.12 +#include <GL/glut.h>
    1.13 +#endif
    1.14 +
    1.15 +#endif	// OPENGL_H_