summaryrefslogtreecommitdiff
path: root/examples/gltf_loading/ex_gltf_loading.c
diff options
context:
space:
mode:
authorOmniscient <17525998+omnisci3nce@users.noreply.github.com>2024-04-21 11:46:28 +1000
committerOmniscient <17525998+omnisci3nce@users.noreply.github.com>2024-04-21 11:46:28 +1000
commit540bdfd0cbe4a95b49281cec4d3ed207070a3b5b (patch)
treeadbbda6eec38d0cd6f35f29e422debe09b807461 /examples/gltf_loading/ex_gltf_loading.c
parentedd6e07841b95c76664e31813bf980742cca4528 (diff)
fix draw_model call
Diffstat (limited to 'examples/gltf_loading/ex_gltf_loading.c')
-rw-r--r--examples/gltf_loading/ex_gltf_loading.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/examples/gltf_loading/ex_gltf_loading.c b/examples/gltf_loading/ex_gltf_loading.c
index 867ddb2..98654d6 100644
--- a/examples/gltf_loading/ex_gltf_loading.c
+++ b/examples/gltf_loading/ex_gltf_loading.c
@@ -70,7 +70,8 @@ int main() {
angle += (rot_speed * deltaTime);
transform model_tf = transform_create(vec3(0.0, 0.1, -0.1), rot,
1.8); // make the backpack a bit bigger
- draw_model(&core->renderer, &cam, cube, model_tf, &our_scene);
+ mat4 model = transform_to_mat(&model_tf);
+ draw_model(&core->renderer, &cam, cube, &model, &our_scene);
render_frame_end(&core->renderer);
}