easy-gpu 0.2.5

wgpu wrapper to manage assets and remove boilerplate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub(crate) mod texture;
pub(crate) mod compute;
pub(crate) mod render;
pub(crate) mod vertex_layout;
pub(crate) mod buffer;

pub use render::mesh::Mesh;
pub use render::pipeline::*;
pub use render::material::{MaterialBuilder,Material};
pub use texture::{Texture,TextureBuilder,SamplerBuilder};
pub use buffer::*;
pub use vertex_layout::*;
pub use compute::*;