libresman

diff examples/imgthumbs/src/opengl.h @ 1:469ce01809bc

rudimentary imgthumbs "example program". doesn't use libresman yet
author John Tsiombikas <nuclear@member.fsf.org>
date Fri, 31 Jan 2014 03:17:24 +0200
parents
children 026cdd1737ff
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/examples/imgthumbs/src/opengl.h	Fri Jan 31 03:17:24 2014 +0200
     1.3 @@ -0,0 +1,10 @@
     1.4 +#ifndef OPENGL_H_
     1.5 +#define OPENGL_H_
     1.6 +
     1.7 +#ifdef __APPLE__
     1.8 +#include <GLUT/glut.h>
     1.9 +#else
    1.10 +#include <GL/glut.h>
    1.11 +#endif
    1.12 +
    1.13 +#endif	/* OPENGL_H_ */