surfman/platform/unix/
mod.rs

1// surfman/surfman/src/platform/unix/mod.rs
2//
3//! Backends specific to Unix-like systems, particularly Linux.
4
5// The default when x11 is enabled, and wayland default is not explicitly selected.
6#[cfg(all(x11_platform, not(wayland_default)))]
7pub mod default;
8
9#[cfg(wayland_default)]
10pub use wayland as default;
11
12#[cfg(free_unix)]
13pub mod generic;
14
15#[cfg(wayland_platform)]
16pub mod wayland;
17#[cfg(x11_platform)]
18pub mod x11;