summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-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);