diff options
author | George Sapountzis <[email protected]> | 2008-04-18 17:28:34 +0300 |
---|---|---|
committer | George Sapountzis <[email protected]> | 2008-04-23 11:12:31 +0300 |
commit | df04ffbf025994abd59e26c8439e77bb340ef20b (patch) | |
tree | c95ec9815e4b00d4a9e1249fedd54048f1310122 /src/glx/x11/dri_glx.c | |
parent | 37be884875ed291c7cf378c570df1cd46b8c2fa1 (diff) |
glx: split out current context code
also clean header inclusion after code movement
Diffstat (limited to 'src/glx/x11/dri_glx.c')
-rw-r--r-- | src/glx/x11/dri_glx.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/glx/x11/dri_glx.c b/src/glx/x11/dri_glx.c index 70873c2cc41..997b0fdf475 100644 --- a/src/glx/x11/dri_glx.c +++ b/src/glx/x11/dri_glx.c @@ -35,20 +35,15 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #ifdef GLX_DIRECT_RENDERING #include <unistd.h> -#include <X11/Xlibint.h> -#include <X11/extensions/Xext.h> -#include <X11/extensions/extutil.h> #include <X11/extensions/Xfixes.h> #include <X11/extensions/Xdamage.h> #include "glheader.h" #include "glxclient.h" +#include "glcontextmodes.h" #include "xf86dri.h" #include "sarea.h" -#include <stdio.h> #include <dlfcn.h> #include <sys/types.h> -#include <stdarg.h> -#include "glcontextmodes.h" #include <sys/mman.h> #include "xf86drm.h" |