1
0
mirror of https://github.com/ocornut/imgui.git synced 2024-09-24 03:28:33 +02:00

Created Developer Tips (markdown)

omar 2017-12-28 18:20:05 +01:00
parent f51b34eb12
commit dacf89c753

5
Developer-Tips.md Normal file

@ -0,0 +1,5 @@
### Using breakpoints
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.