Misc: added imgui.gdb and imgui.natstepfilter debugger helpers for gdb and msvc.

This commit is contained in:
Rokas Kupstys
2021-03-11 14:17:00 +02:00
committed by ocornut
parent 033dfd9d35
commit 1bc6f82091
6 changed files with 63 additions and 12 deletions

View File

@ -102,6 +102,8 @@ Other Changes:
in e.g. hi-dpi settings will generally look better. (#3491) [@thedmd]
- ImDrawList: AddCircle, AddCircleFilled(): Tweaked default segment count calculation to honor MaxError
with more accuracy. Made default segment count always even for better looking result. (#3808) [@thedmd]
- Misc: Added 'debuggers/imgui.gdb' and 'debuggers/imgui.natstepfilter' (along with existing 'imgui.natvis')
scriptss to configure popular debuggers into skipping trivial functions when using StepInto. [@rokups]
- Backends: Android: Added native Android backend. (#3446) [@duddel]
- Backends: Win32: Added ImGui_ImplWin32_EnableAlphaCompositing() to facilitate experimenting with
alpha compositing and transparent windows. (#2766, #3447 etc.).