feat(renderer): add MeshVertex, Mesh, and depth buffer support

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-24 19:47:59 +09:00
parent 82e3c19b53
commit 78dcc30258
4 changed files with 80 additions and 1 deletions

View File

@@ -1,5 +1,7 @@
pub mod gpu;
pub mod pipeline;
pub mod vertex;
pub mod mesh;
pub use gpu::GpuContext;
pub use gpu::{GpuContext, DEPTH_FORMAT};
pub use mesh::Mesh;