libresman

annotate examples/imgthumbs/src/opengl.h @ 9:03f3de659c32

threadpool: forgot to free the job after running the work callback
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 04 Feb 2014 05:42:31 +0200
parents 026cdd1737ff
children
rev   line source
nuclear@1 1 #ifndef OPENGL_H_
nuclear@1 2 #define OPENGL_H_
nuclear@1 3
nuclear@1 4 #ifdef __APPLE__
nuclear@1 5 #include <GLUT/glut.h>
nuclear@1 6 #else
nuclear@1 7 #include <GL/glut.h>
nuclear@1 8 #endif
nuclear@1 9
nuclear@1 10 #endif /* OPENGL_H_ */