summaryrefslogtreecommitdiff
path: root/examples/triangle
diff options
context:
space:
mode:
authorOmniscient <omniscient.oce@gmail.com>2024-05-19 00:01:50 +1000
committerOmniscient <omniscient.oce@gmail.com>2024-05-19 00:01:50 +1000
commitb1b2d988e8f2fa3b0f63ff3aeb02849497433647 (patch)
tree8c0a5dccbc791b47b1da320ee4d754fb8577bd69 /examples/triangle
parentd79a8aa200bd64b14b85d2ec0c207601ba5c7922 (diff)
cube compiles again
Diffstat (limited to 'examples/triangle')
-rw-r--r--examples/triangle/ex_triangle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/triangle/ex_triangle.c b/examples/triangle/ex_triangle.c
index 886637a..69c29ac 100644
--- a/examples/triangle/ex_triangle.c
+++ b/examples/triangle/ex_triangle.c
@@ -27,7 +27,7 @@ int main() {
core_bringup();
arena scratch = arena_create(malloc(1024 * 1024), 1024 * 1024);
- vertex_description vertex_input = {0};
+ vertex_description vertex_input = {.use_full_vertex_size=false};
vertex_input.debug_label = "Hello";
vertex_desc_add(&vertex_input, "inPos", ATTR_F32x2);
vertex_desc_add(&vertex_input, "inColor", ATTR_F32x3);