Fonts: fixed assertion failure when ImFontAtlasRectEntry::Generation overflows. (#8906)

This commit is contained in:
Christian Fillion
2025-08-27 00:05:30 -04:00
committed by ocornut
parent 87c1ab7988
commit a309d2dcac
3 changed files with 9 additions and 5 deletions

View File

@@ -45,6 +45,8 @@ Other Changes:
- Scrollbar, Style: added configurable style.ScrollbarPadding value and corresponding
ImGuiStyleVar_ScrollbarPadding enum, instead of hardcoded computed default. (#8895)
- Fonts: fixed an assertion failure when a rectangle entry has been reused
1024 times (e.g. due to constant change of font types). (#8906) [@cfillion]
- Fixed Bullet() fixed tesselation amount which looked out of place in very large sizes.
- DrawList: Fixed CloneOutput() unnecessarily taking a copy of the ImDrawListSharedData
pointer, which could to issue when deleting the cloned list. (#8894, #1860)