1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-09 23:54:20 +00:00

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

@ -4,8 +4,8 @@ misc/cpp/
This is also an example of how you may wrap your own similar types.
misc/debuggers/
Helper files for popular debuggers.
With the .natvis file, types like ImVector<> will be displayed nicely in Visual Studio debugger.
Helper files for popular debuggers (Visual Studio, GDB, LLDB).
e.g. With the .natvis file, types like ImVector<> will be displayed nicely in Visual Studio debugger.
misc/fonts/
Fonts loading/merging instructions (e.g. How to handle glyph ranges, how to merge icons fonts).

View file

@ -15,6 +15,7 @@ imgui.natvis
(read comments inside file for details)
imgui_lldb.py
LLDB: synthetic children provider and summaries for Dear ImGui types.
LLDB-based debuggers (*): synthetic children provider and summaries for Dear ImGui types.
With this, types like ImVector<> will be displayed nicely in the debugger.
(read comments inside file for details)
(*) Xcode, Android Studio, may be used from VS Code, C++Builder, CLion, Eclipse etc.

View file

@ -1,4 +1,6 @@
# This file implements synthetic children providers and summaries for various ImGui types for LLDB.
# This file implements synthetic children providers and summaries for various Dear ImGui types for LLDB.
# LLDB is used by Xcode, Android Studio, and may be used from VS Code, C++Builder, CLion, Eclipse etc.
#
# Useful links/documentation related to the feature:
# - https://lldb.llvm.org/use/variable.html#summary-strings