surfman/platform/unix/generic/mod.rs
1// surfman/surfman/src/platform/unix/generic/mod.rs
2//
3//! The Mesa "surfaceless" backend, which only supports off-screen surfaces and cannot directly
4//! display surfaces on a screen.
5
6pub mod connection;
7pub mod context;
8pub mod device;
9pub mod surface;
10
11crate::implement_interfaces!();
12
13#[cfg(test)]
14#[path = "../../../tests.rs"]
15mod tests;