feat: Added .gdbinit script to aid with debugging

This commit is contained in:
WerWolv 2023-08-25 22:54:07 +02:00
parent 7476ae230c
commit baecf66716
1 changed files with 9 additions and 0 deletions

9
.gdbinit Normal file
View File

@ -0,0 +1,9 @@
# Skip all std:: and __gnu_debug:: symbols
skip -rfu ^std::
skip -rfu ^__gnu_debug::
# Skip all ImGui:: symbols
skip -rfu ^ImGui::
# Trigger breakpoint when execution reaches triggerSafeShutdown()
break triggerSafeShutdown