gpu 0.2.3

An ergonomic GPU API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[cfg(target_arch = "wasm32")]
mod platform {
    pub use wasm_bindgen_test::wasm_bindgen_test_configure as web_configure;
    pub use wasm_bindgen_test::wasm_bindgen_test as test;
    web_configure!(run_in_browser);
}

#[cfg(not(target_arch = "wasm32"))]
mod platform {
    pub use test as test;
}

pub use platform::test;