diff options
Diffstat (limited to 'examples/obj_loading/ex_obj_loading.c')
-rw-r--r-- | examples/obj_loading/ex_obj_loading.c | 22 |
1 files changed, 22 insertions, 0 deletions
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 <glfw3.h> + +#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; +} |