Mercurial > sdl-ios-xcode
diff src/video/x11/SDL_x11dyn.h @ 2763:6fc50bdd88c0
Some cleanups on the new XInput code.
One or two things got moved around, but largely this is hooked up correctly
in the Unix configure system now: it can be dynamically loaded and fallback
gracefully if not available, or libXi can be directly linked to libSDL.
XInput support can be --disable'd from the configure script, too (defaults to
enabled).
Please note that while the framework is in place to gracefully fallback, the
current state of the source requires XInput. We'll need to adjust a few
things still to correct this.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Wed, 17 Sep 2008 08:20:57 +0000 |
parents | 44e49d3fa6cf |
children | 99210400e8b9 |
line wrap: on
line diff
--- a/src/video/x11/SDL_x11dyn.h Mon Sep 15 20:48:51 2008 +0000 +++ b/src/video/x11/SDL_x11dyn.h Wed Sep 17 08:20:57 2008 +0000 @@ -29,7 +29,6 @@ #include <X11/Xatom.h> #include <X11/Xlibint.h> #include <X11/Xproto.h> -//#include <X11/extensions/XInput.h> #include "../Xext/extensions/Xext.h" #include "../Xext/extensions/extutil.h" @@ -43,6 +42,10 @@ #include <X11/extensions/Xrandr.h> #endif +#if SDL_VIDEO_DRIVER_X11_XINPUT +#include <X11/extensions/XInput.h> +#endif + /* * When using the "dynamic X11" functionality, we duplicate all the Xlib * symbols that would be referenced by SDL inside of SDL itself.