winit-sonoma-fix/src/api/x11/ffi.rs

17 lines
387 B
Rust
Raw Normal View History

2015-05-07 21:20:25 +10:00
pub use x11_dl::keysym::*;
pub use x11_dl::xcursor::*;
pub use x11_dl::xf86vmode::*;
pub use x11_dl::xlib::*;
2014-07-27 23:10:58 +10:00
2015-04-09 20:38:58 +10:00
pub use self::glx::types::GLXContext;
2014-07-27 23:10:58 +10:00
2014-10-13 20:36:01 +11:00
/// GLX bindings
pub mod glx {
2014-12-24 18:09:16 +11:00
include!(concat!(env!("OUT_DIR"), "/glx_bindings.rs"));
2014-10-13 20:36:01 +11:00
}
/// Functions that are not necessarly always available
pub mod glx_extra {
2014-12-24 18:09:16 +11:00
include!(concat!(env!("OUT_DIR"), "/glx_extra_bindings.rs"));
2014-10-13 20:36:01 +11:00
}