gpu 0.2.3

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 texture_2d;
mod texture_3d;
mod sampler;

mod color_format;
mod r#type;
mod texture_format;

pub use sampler::*;

pub use color_format::ColorFormat;
pub use r#type::Type;
pub use texture_format::TextureFormat;

pub use texture::Texture;
pub use texture_2d::Texture2D;
pub use texture_3d::Texture3D;