renderer render

This commit is contained in:
Jérôme Bousquié
2026-07-05 08:00:58 +02:00
parent d1b499570a
commit 7cc1fb845f
7 changed files with 142 additions and 29 deletions
+7
View File
@@ -0,0 +1,7 @@
#[repr(C)]
#[derive(Copy, Clone, Debug, bytemuck::Pod, bytemuck::Zeroable)]
pub struct Vertex {
pub position: [f32; 3],
pub uv: [f32; 2],
pub color: [f32; 3],
}