basic working polygon renderer

This commit is contained in:
2024-06-15 03:03:48 -04:00
parent 219213ee24
commit aa466a248c
23 changed files with 639 additions and 300 deletions

View File

@@ -2,8 +2,12 @@ mod buf;
mod instance;
mod storage;
mod uniform;
mod vertex;
mod texture;
pub use buf::*;
pub use instance::*;
pub use storage::*;
pub use uniform::*;
pub use vertex::*;
pub use texture::*;