summaryrefslogtreecommitdiff
path: root/examples/main_loop/ex_main_loop.c
diff options
context:
space:
mode:
authoromnisci3nce <omniscient.oce@gmail.com>2024-04-27 18:15:56 +1000
committeromnisci3nce <omniscient.oce@gmail.com>2024-04-27 18:15:56 +1000
commit69b1487e3e063cbecba96706c550d417b2f24e37 (patch)
tree9e31e292ef1cbb6775c52d14bae1f536a1f51906 /examples/main_loop/ex_main_loop.c
parent93c8d40b39fe55a626e66d412450fb4cca1f993b (diff)
getting us compiling on windows
Diffstat (limited to 'examples/main_loop/ex_main_loop.c')
-rw-r--r--examples/main_loop/ex_main_loop.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/main_loop/ex_main_loop.c b/examples/main_loop/ex_main_loop.c
index 8819f7c..4e1f6a9 100644
--- a/examples/main_loop/ex_main_loop.c
+++ b/examples/main_loop/ex_main_loop.c
@@ -4,7 +4,6 @@
#include "core.h"
#include "maths.h"
#include "render.h"
-#include "render_backend.h"
int main() {
core* core = core_bringup();
@@ -14,7 +13,7 @@ int main() {
// Main loop
while (!glfwWindowShouldClose(core->renderer.window)) {
input_update(&core->input);
- threadpool_process_results(&core->threadpool, 1);
+ // threadpool_process_results(&core->threadpool, 1);
render_frame_begin(&core->renderer);