Initial wgpu abstraction

This commit is contained in:
Werner
2021-11-09 21:07:16 -03:00
parent 15e8989bef
commit b23bc27f55
25 changed files with 775 additions and 209 deletions

11
Source/Shader/mod.rs Normal file
View File

@ -0,0 +1,11 @@
#[path = "Shader.rs"]
mod _Shader;
pub use self::_Shader::*;
#[path = "ShaderSource.rs"]
mod _ShaderSource;
pub use self::_ShaderSource::*;
#[path = "ShaderStage.rs"]
mod _ShaderStage;
pub use self::_ShaderStage::*;