1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// surfman/surfman/src/platform/unix/generic/mod.rs
//
//! The Mesa "surfaceless" backend, which only supports off-screen surfaces and cannot directly
//! display surfaces on a screen.

pub mod connection;
pub mod context;
pub mod device;
pub mod surface;

#[path = "../../../implementation/mod.rs"]
mod implementation;

#[cfg(test)]
#[path = "../../../tests.rs"]
mod tests;