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

View File

@ -1,11 +1,9 @@
#![allow(non_snake_case)]
pub mod Camera;
pub mod Color;
pub mod Render;
#[path = "Display.rs"]
mod _Display;
pub use self::_Display::*;
pub mod Shader;
#[path = "Runtime.rs"]
mod _Runtime;