ugli_raw/
lib.rs

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