Added type formatters for the LLDB debuggers (e.g. Xcode, Android Studio) (#8950)

This commit is contained in:
ocornut
2025-09-22 12:26:53 +02:00
parent 087fbf08f6
commit 46e6382b69
4 changed files with 10 additions and 4 deletions

View File

@@ -45,6 +45,9 @@ Other Changes:
- IO: added ImGuiPlatformIO::ClearPlatformHandlers(), ClearRendererHandlers()
helpers to null all handlers. (#8945, #2769)
- Misc: Debuggers: added type formatters for the LLDB debuggers (e.g. Xcode,
Android Studio & more) to provide nicer display for ImVec2, ImVec4, ImVector etc.
See misc/debuggers/ for details. (#8950) [@mentlerd]
- Backends: all backends call ImGuiPlatformIO::ClearPlatformHandlers() and
ClearRendererHandlers() on shutdown, so as not to leave function pointers
which may be dangling when using backend in e.g. DLL. (#8945, #2769)