gpu 0.1.0

An ergonomic GPU API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod texture;
mod texture2d;
mod texture3d;
mod sampler;

mod colorformat;
mod componentformat;
mod textureformat;

pub use sampler::*;

pub use colorformat::ColorFormat;
pub use componentformat::ComponentFormat;
pub use textureformat::TextureFormat;

pub use texture::Texture;
pub use texture2d::Texture2D;
pub use texture3d::Texture3D;