Fix debug overlay vsync on windows

This commit is contained in:
martinfouilleul 2023-09-10 12:28:53 +02:00
parent 565bef5896
commit 9aad2c0ec8
1 changed files with 6 additions and 0 deletions

View File

@ -883,7 +883,13 @@ int main(int argc, char** argv)
app->debugOverlay.maxEntries = 200;
oc_arena_init(&app->debugOverlay.logArena);
#if OC_PLATFORM_WINDOWS
//NOTE(martin): on windows we set all surfaces to non-synced, and do a single "manual" wait here.
// on macOS each surface is individually synced to the monitor refresh rate but don't block each other
oc_surface_swap_interval(app->debugOverlay.surface, 0);
#else
oc_surface_swap_interval(app->debugOverlay.surface, 1);
#endif
oc_surface_deselect();