Add support for xcb

Due to XCB and Xlib compability, we can take a shortcut and use X11's
underlying xcb_connection. This way, a complete XCB backend implementation can
be avoided.
This commit is contained in:
Nicolas Koch 2016-07-30 23:58:28 +02:00
parent 20afec5a14
commit 32d01b288e
5 changed files with 26 additions and 1 deletions

View file

@ -4,4 +4,5 @@ pub use x11_dl::xf86vmode::*;
pub use x11_dl::xlib::*;
pub use x11_dl::xinput::*;
pub use x11_dl::xinput2::*;
pub use x11_dl::xlib_xcb::*;
pub use x11_dl::error::OpenError;