-
-
Notifications
You must be signed in to change notification settings - Fork 10.5k
Developer Tips
omar edited this page Nov 9, 2018
·
17 revisions
The misc/natvis/imgui.natvis
file may be included in your project to provide support for dear imgui types in the debugger (e.g. expanding of ImVector<>
arrays).
Using debugger breakpoints can be tedious in an interactive application dealing with lots of data. Even more so as the state of the application may be so reliant on mouse and keyboard inputs. One convenient trick is filter breakpoint based on custom conditions, e.g checking for the Alt key modifier to be pressed:
if (ImGui::GetIO().KeyAlt)
printf(""); // Set a debugger breakpoint here!
So you can setup your UI state for debugging (open windows, mouse position, active action etc.) and then only when you press ALT your breakpoint will trigger.