diff options
author | Omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-04-21 11:57:20 +1000 |
---|---|---|
committer | Omniscient <17525998+omnisci3nce@users.noreply.github.com> | 2024-04-21 11:57:20 +1000 |
commit | e6273e4dc87a036547447492396c9939e89ecf23 (patch) | |
tree | 76a8b13f87075eb0ce8017ab4ae64a1bc47523b5 /examples/main_loop/ex_main_loop.c | |
parent | ff923749ef298346c5448e90e8338bfc28e4f66b (diff) |
make it compile
Diffstat (limited to 'examples/main_loop/ex_main_loop.c')
-rw-r--r-- | examples/main_loop/ex_main_loop.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/main_loop/ex_main_loop.c b/examples/main_loop/ex_main_loop.c index 31514bf..8819f7c 100644 --- a/examples/main_loop/ex_main_loop.c +++ b/examples/main_loop/ex_main_loop.c @@ -22,7 +22,7 @@ int main() { x += 0.01; mat4 model = mat4_translation(vec3(x, 0, 0)); - gfx_backend_draw_frame(&core->renderer, &camera, model); + gfx_backend_draw_frame(&core->renderer, &camera, model, NULL); // insert work here |