Skip to main content

surfman/mesa_surfaceless/
mod.rs

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