1
2
3
4
5
6
7
8
9
#[cfg(not(target_arch = "wasm32"))]
#[path = "gl/mod.rs"]
mod implementation;

#[cfg(target_arch = "wasm32")]
#[path = "webgl/mod.rs"]
mod implementation;

pub use implementation::*;