From 90dd96cbc9b09cdc75977b115a9b61fa7547baef Mon Sep 17 00:00:00 2001 From: Omniscient <17525998+omnisci3nce@users.noreply.github.com> Date: Sun, 25 Feb 2024 17:35:27 +1100 Subject: boilerplate for more examples --- examples/obj_loading/ex_obj_loading.c | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 examples/obj_loading/ex_obj_loading.c (limited to 'examples/obj_loading/ex_obj_loading.c') diff --git a/examples/obj_loading/ex_obj_loading.c b/examples/obj_loading/ex_obj_loading.c new file mode 100644 index 0000000..3b2354a --- /dev/null +++ b/examples/obj_loading/ex_obj_loading.c @@ -0,0 +1,22 @@ +#include + +#include "core.h" +#include "render.h" + +int main() { + core* core = core_bringup(); + + // Main loop + while (!glfwWindowShouldClose(core->renderer.window)) { + input_update(&core->input); + threadpool_process_results(&core->threadpool, 1); + + render_frame_begin(&core->renderer); + + // insert work here + + render_frame_end(&core->renderer); + } + + return 0; +} -- cgit v1.2.3-70-g09d2