diff options
author | Omniscient <omniscient.oce@gmail.com> | 2024-05-20 10:49:57 +1000 |
---|---|---|
committer | Omniscient <omniscient.oce@gmail.com> | 2024-05-20 10:49:57 +1000 |
commit | 73d4145f46d2305f45761b8e456df692d1962dfb (patch) | |
tree | 5295c8ce5f855ca4a0f1bebe50beee80bae66682 /src/renderer/bind_group_layouts.h | |
parent | c91f86bd744df6f93a93e61d030c55393fb9ef0d (diff) |
move standard vertex desc to ral.c
Diffstat (limited to 'src/renderer/bind_group_layouts.h')
-rw-r--r-- | src/renderer/bind_group_layouts.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/renderer/bind_group_layouts.h b/src/renderer/bind_group_layouts.h index d2571ef..246d1ef 100644 --- a/src/renderer/bind_group_layouts.h +++ b/src/renderer/bind_group_layouts.h @@ -16,10 +16,10 @@ // 1. Scene / Global typedef struct bg_globals { - f32 total_time; - f32 delta_time; mat4 view; mat4 projection; + f32 total_time; + f32 delta_time; } bg_globals; // 2. Material (once per object) |