diff options
author | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-06-10 13:35:23 +1000 |
---|---|---|
committer | omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-06-10 13:35:23 +1000 |
commit | 99f2476d7bb8479d543f080c209324c77c775737 (patch) | |
tree | 8c8f52155552fb7c9ade94e70f5f11d36fa73701 /src/maths | |
parent | b9a7166d9a7e2b0eed948353c134e72dfa86ab58 (diff) |
bring back gltf
Diffstat (limited to 'src/maths')
-rw-r--r-- | src/maths/primitives.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/maths/primitives.c b/src/maths/primitives.c index b9ec868..c0af140 100644 --- a/src/maths/primitives.c +++ b/src/maths/primitives.c @@ -111,7 +111,7 @@ geometry_data geo_create_cuboid(f32x3 extents) { .format = VERTEX_STATIC_3D, .vertices = vertices, .has_indices = true, - .indices = *indices, // FIXME: make darray methods that return stack allocated struct + .indices = indices, // FIXME: make darray methods that return stack allocated struct .colour = vec3(0, 0, 0), }; |