mirror of
https://github.com/Kelsidavis/WoWee.git
synced 2026-06-06 07:04:43 -04:00
Replace processAllReadyTiles() with bounded processReadyTiles() in the same-map teleport and reconnect paths. processAllReadyTiles finalizes every pending tile synchronously with a GPU sync wait, which caused 8+ second main-thread stalls when many tiles were queued. The bounded version processes 1-4 tiles per call with async GPU upload — remaining tiles finalize incrementally over subsequent frames.