Skip to main content

surfman/wayland/
mod.rs

1//! Bindings to Wayland via the Linux GBM interface.
2
3pub mod connection;
4pub mod context;
5pub mod device;
6pub mod surface;
7
8crate::implement_interfaces!();
9
10#[cfg(test)]
11#[path = "../tests.rs"]
12mod tests;