aboutsummaryrefslogtreecommitdiffstats
path: root/include/pugl/gl.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-01-02 21:26:35 +0100
committerDavid Robillard <d@drobilla.net>2021-01-02 21:26:35 +0100
commitf6ca60606561ddbe5dab526ab1bc6b89f6dbe082 (patch)
tree41b089efcad6d691f348cc05af193e583afe2380 /include/pugl/gl.h
parent1c365945ed2ebd5b9f54eb0c8c5c1c6d97cad712 (diff)
downloadpugl-f6ca60606561ddbe5dab526ab1bc6b89f6dbe082.tar.gz
pugl-f6ca60606561ddbe5dab526ab1bc6b89f6dbe082.tar.bz2
pugl-f6ca60606561ddbe5dab526ab1bc6b89f6dbe082.zip
Clean up includes
Diffstat (limited to 'include/pugl/gl.h')
-rw-r--r--include/pugl/gl.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/pugl/gl.h b/include/pugl/gl.h
index a311416..3443d83 100644
--- a/include/pugl/gl.h
+++ b/include/pugl/gl.h
@@ -26,23 +26,23 @@
#ifndef PUGL_NO_INCLUDE_GL_H
# ifdef __APPLE__
-# include "OpenGL/gl.h"
+# include <OpenGL/gl.h>
# else
# ifdef _WIN32
# include <windows.h>
# endif
-# include "GL/gl.h"
+# include <GL/gl.h>
# endif
#endif
#ifndef PUGL_NO_INCLUDE_GLU_H
# ifdef __APPLE__
-# include "OpenGL/glu.h"
+# include <OpenGL/glu.h>
# else
# ifdef _WIN32
# include <windows.h>
# endif
-# include "GL/glu.h"
+# include <GL/glu.h>
# endif
#endif