Clipper, Tables: Improved error reporting when misusing the clipper inside a table + made the assert a better recoverable error. (#9350)

Amend 20e040c8
This commit is contained in:
ocornut
2026-04-07 19:19:40 +02:00
parent 7cb0baeb77
commit 6985925244
2 changed files with 13 additions and 4 deletions
+5
View File
@@ -48,6 +48,11 @@ Other Changes:
multi-line edit is clipped due to being out of view.
- Fonts:
- imgui_freetype: add FreeType headers & compiled version in 'About Dear ImGui' details.
- Clipper:
- Improved error reporting when misusing the clipper inside a table (prioritize
reporting the common clipper error over a table sanity check assert). (#9350)
- Tweaked assert triggering when first item height measurement fails, and made it
a better recoverable error. (#9350)
- Backends:
- Metal: avoid redundant vertex buffer bind in SetupRenderState, which leads
to validation issue. (#9343) [@Hunam6]