diff options
author | tomaka <pierre.krieger1708@gmail.com> | 2015-07-18 19:03:13 +0200 |
---|---|---|
committer | tomaka <pierre.krieger1708@gmail.com> | 2015-07-18 19:03:13 +0200 |
commit | 7d1d035d9ad5d262a67c6857596caefe957dcfda (patch) | |
tree | e1d1181d0a1d5a69730338d3d800cd30dde9d1b9 /src/api/x11/ffi.rs | |
parent | c1ebb8cf310947d7771c51c4949acedb19c41ee0 (diff) | |
parent | d960753360fdc70e94ce2633db1e03d5ddc7b657 (diff) | |
download | glutin-7d1d035d9ad5d262a67c6857596caefe957dcfda.tar.gz glutin-7d1d035d9ad5d262a67c6857596caefe957dcfda.zip |
Merge pull request #510 from robertknight/x11_xinput2
Use XInput2 for event handling
Diffstat (limited to 'src/api/x11/ffi.rs')
-rw-r--r-- | src/api/x11/ffi.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/api/x11/ffi.rs b/src/api/x11/ffi.rs index 8c9a35d..3d4f0ed 100644 --- a/src/api/x11/ffi.rs +++ b/src/api/x11/ffi.rs @@ -2,6 +2,8 @@ pub use x11_dl::keysym::*; pub use x11_dl::xcursor::*; pub use x11_dl::xf86vmode::*; pub use x11_dl::xlib::*; +pub use x11_dl::xinput::*; +pub use x11_dl::xinput2::*; pub use self::glx::types::GLXContext; |