diff options
author | Emil Velikov <[email protected]> | 2014-02-28 17:56:01 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-03-11 12:50:43 +0000 |
commit | f41a65397b410d3960a6ed31b05367bee5229120 (patch) | |
tree | 69f6fffa0c1ee54b8ee4277b1769763013bcbe13 /src/glx/dri3_glx.c | |
parent | e5214dd8f1356ac77e9caed5abb2b76deb27a920 (diff) |
glx: cleanup unneeded headers
- xf86dri.h is the old dri1 header, not required by dri2 nor dri3
- fold xf86drm.h inclusiong inside dri2.h
- dri3_glx does not have any drm specific dependencies
- glapi.h is not required by the dri2 and dri3 codepaths
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Jon TURNEY <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/glx/dri3_glx.c')
-rw-r--r-- | src/glx/dri3_glx.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/glx/dri3_glx.c b/src/glx/dri3_glx.c index 8fbf125a7a2..f27a773981f 100644 --- a/src/glx/dri3_glx.c +++ b/src/glx/dri3_glx.c @@ -65,9 +65,7 @@ #include <xcb/dri3.h> #include <xcb/present.h> #include <GL/gl.h> -#include "glapi.h" #include "glxclient.h" -#include "xf86dri.h" #include <dlfcn.h> #include <fcntl.h> #include <unistd.h> @@ -75,7 +73,6 @@ #include <sys/mman.h> #include <sys/time.h> -#include "xf86drm.h" #include "dri_common.h" #include "dri3_priv.h" #include "loader.h" |