init commit

This commit is contained in:
zack 2024-12-28 18:36:05 -05:00
commit 15a4041785
No known key found for this signature in database
GPG key ID: 5F873416BCF59F35
20 changed files with 37592 additions and 0 deletions

View file

@ -0,0 +1,11 @@
#![cfg_attr(target_arch = "spirv", no_std)]
use glam::Mat4;
#[repr(C)]
#[derive(Clone)]
pub struct UniformBufferObject {
pub model: Mat4,
pub view: Mat4,
pub proj: Mat4,
}