diff options
author | David Robillard <d@drobilla.net> | 2020-03-09 21:49:50 +0100 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2020-03-09 21:49:50 +0100 |
commit | 947703d7b0303c0afacc8d61ad145806b44e3af6 (patch) | |
tree | 5fc738032b5154c3f5f37fc53c4c0151e036e5be /pugl/detail/x11_gl.c | |
parent | 3dad9b15a147c6185a444effb764e6565c68bd28 (diff) | |
download | pugl-947703d7b0303c0afacc8d61ad145806b44e3af6.tar.gz pugl-947703d7b0303c0afacc8d61ad145806b44e3af6.tar.bz2 pugl-947703d7b0303c0afacc8d61ad145806b44e3af6.zip |
Cleanup: Remove unnecessary includes
Apparently glxext.h is always included in glx.h on modern systems.
The window demo does not actually use any GL functions directly since they are
all factored out.
Diffstat (limited to 'pugl/detail/x11_gl.c')
-rw-r--r-- | pugl/detail/x11_gl.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/pugl/detail/x11_gl.c b/pugl/detail/x11_gl.c index 5bd7fac..5e4a5ca 100644 --- a/pugl/detail/x11_gl.c +++ b/pugl/detail/x11_gl.c @@ -25,7 +25,6 @@ #include "pugl/pugl_stub.h" #include <GL/glx.h> -#include <GL/glxext.h> #include <X11/X.h> #include <X11/Xlib.h> #include <X11/Xutil.h> |