winit/src/x11/mod.rs

14 lines
280 B
Rust
Raw Normal View History

2014-10-04 19:17:02 +02:00
#[cfg(feature = "headless")]
pub use self::headless::HeadlessContext;
2014-07-27 15:10:58 +02:00
2014-10-04 19:17:02 +02:00
#[cfg(feature = "window")]
pub use self::window::{Window, MonitorID, get_available_monitors, get_primary_monitor};
2014-07-27 15:10:58 +02:00
mod ffi;
2014-10-04 19:17:02 +02:00
#[cfg(feature = "headless")]
mod headless;
2014-07-27 15:10:58 +02:00
2014-10-04 19:17:02 +02:00
#[cfg(feature = "window")]
mod window;