1
2
3
4
5
6
7
8
// surfman/surfman/src/platform/generic/mod.rs
//
//! Backends that are not specific to any operating system.

#[cfg(any(android, angle, linux))]
pub(crate) mod egl;

pub mod multi;