diff options
author | David Robillard <d@drobilla.net> | 2014-08-27 07:09:58 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2014-08-27 07:09:58 +0000 |
commit | b4dbb3616865cd236cda4f2e4ac806b3b4840b29 (patch) | |
tree | 4a78f8298e42b95a074844e44d69a2446cb5eea3 /pugl_test.c | |
parent | f25f829a3038db39c83ad8cc92dd5fdc4876751b (diff) | |
download | pugl-b4dbb3616865cd236cda4f2e4ac806b3b4840b29.tar.gz pugl-b4dbb3616865cd236cda4f2e4ac806b3b4840b29.tar.bz2 pugl-b4dbb3616865cd236cda4f2e4ac806b3b4840b29.zip |
Cairo support on X11.
Diffstat (limited to 'pugl_test.c')
-rw-r--r-- | pugl_test.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/pugl_test.c b/pugl_test.c index 9282420..aa7997d 100644 --- a/pugl_test.c +++ b/pugl_test.c @@ -22,13 +22,8 @@ #include <string.h> #include "pugl/pugl.h" - -// Argh! -#ifdef __APPLE__ -# include <OpenGL/glu.h> -#else -# include <GL/glu.h> -#endif +#include "pugl/gl.h" +#include "pugl/glu.h" static int quit = 0; static float xAngle = 0.0f; |