aboutsummaryrefslogtreecommitdiffstats
path: root/src/x11/mod.rs
blob: 22184a9f5e030d45dfe3c6ecdab134b9db147521 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[cfg(feature = "headless")]
pub use self::headless::HeadlessContext;

#[cfg(feature = "window")]
pub use self::window::{Window, WindowProxy, MonitorID, get_available_monitors, get_primary_monitor};

mod ffi;

#[cfg(feature = "headless")]
mod headless;

#[cfg(feature = "window")]
mod window;

#[cfg(not(feature = "window"))]
pub type Window = ();       // TODO: hack to make things work
#[cfg(not(feature = "window"))]
pub type MonitorID = ();       // TODO: hack to make things work