gl-lite 0.1.2

Wrappers around common GL objects and methods
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub mod geometry;
pub mod node;
pub mod program;
pub mod texture;
pub mod uniforms;

#[cfg(not(target_arch = "wasm32"))]
#[path = "native/mod.rs"]
pub mod gli;

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