diff options
author | David Robillard <d@drobilla.net> | 2019-07-27 21:48:21 +0200 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2019-07-29 01:59:27 +0200 |
commit | 626a49c269351ab47ba8ab1847eae0d13fd62934 (patch) | |
tree | 1f1c11186f4f4bc390a3494487dbf57707283ca8 /pugl/detail/x11_gl.c | |
parent | 560bcf2ad4d73b79d6e9e4c1c7965d7617a3a41d (diff) | |
download | pugl-626a49c269351ab47ba8ab1847eae0d13fd62934.tar.gz pugl-626a49c269351ab47ba8ab1847eae0d13fd62934.tar.bz2 pugl-626a49c269351ab47ba8ab1847eae0d13fd62934.zip |
Cleanup: Clean up includes and call IWYU in lint target
Diffstat (limited to 'pugl/detail/x11_gl.c')
-rw-r--r-- | pugl/detail/x11_gl.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/pugl/detail/x11_gl.c b/pugl/detail/x11_gl.c index 929d3a5..6ed8622 100644 --- a/pugl/detail/x11_gl.c +++ b/pugl/detail/x11_gl.c @@ -20,11 +20,16 @@ #include "pugl/detail/implementation.h" #include "pugl/detail/x11.h" +#include "pugl/pugl.h" #include "pugl/pugl_gl_backend.h" #include <GL/gl.h> #include <GL/glx.h> +#include <X11/X.h> +#include <X11/Xlib.h> +#include <X11/Xutil.h> +#include <stdbool.h> #include <stdio.h> #include <stdlib.h> |