winit/src/api/x11/ffi.rs

17 lines
387 B
Rust
Raw Normal View History

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