You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Include an unused list of DynamicTile16 useful for reducing vram usage (#1136)
We don't free vram until after vblank, so if we end up generating a
bunch of unused DynamicTiles, then even though we're going to free them
eventually, it's best to not use too much as it'll limit the amount of
rendering we can do in one go.
After:
<img width="290" height="180" alt="image"
src="https://github.com/user-attachments/assets/761f752c-fdb1-4a77-a960-e65c75d2ef5d"
/>
Before:
<img width="290" height="180" alt="image"
src="https://github.com/user-attachments/assets/6be10151-2bfb-4565-9870-5094816aeece"
/>
The actual number of used tiles is the same, but now we're using fewer
while doing the actual rendering.
- [x] no changelog update needed
0 commit comments