summaryrefslogtreecommitdiff
path: root/imgui-1.92.1/misc/debuggers
diff options
context:
space:
mode:
authorAldrik Ramaekers <aldrikboy@gmail.com>2025-08-09 08:35:03 +0200
committerAldrik Ramaekers <aldrikboy@gmail.com>2025-08-09 08:35:03 +0200
commit432f24319319fe040e142059eb83279c53f90ab8 (patch)
tree5631eb0eb3a46d086070e8398d9080ff681133ac /imgui-1.92.1/misc/debuggers
parent5d34aff5888d3f0c624251f15bedb96c347978d6 (diff)
refactor 2
Diffstat (limited to 'imgui-1.92.1/misc/debuggers')
-rw-r--r--imgui-1.92.1/misc/debuggers/README.txt16
-rw-r--r--imgui-1.92.1/misc/debuggers/imgui.gdb12
-rw-r--r--imgui-1.92.1/misc/debuggers/imgui.natstepfilter31
-rw-r--r--imgui-1.92.1/misc/debuggers/imgui.natvis58
4 files changed, 0 insertions, 117 deletions
diff --git a/imgui-1.92.1/misc/debuggers/README.txt b/imgui-1.92.1/misc/debuggers/README.txt
deleted file mode 100644
index 3f4ba83..0000000
--- a/imgui-1.92.1/misc/debuggers/README.txt
+++ /dev/null
@@ -1,16 +0,0 @@
-
-HELPER FILES FOR POPULAR DEBUGGERS
-
-imgui.gdb
- GDB: disable stepping into trivial functions.
- (read comments inside file for details)
-
-imgui.natstepfilter
- Visual Studio Debugger: disable stepping into trivial functions.
- (read comments inside file for details)
-
-imgui.natvis
- Visual Studio Debugger: describe Dear ImGui types for better display.
- With this, types like ImVector<> will be displayed nicely in the debugger.
- (read comments inside file for details)
-
diff --git a/imgui-1.92.1/misc/debuggers/imgui.gdb b/imgui-1.92.1/misc/debuggers/imgui.gdb
deleted file mode 100644
index 000ff6e..0000000
--- a/imgui-1.92.1/misc/debuggers/imgui.gdb
+++ /dev/null
@@ -1,12 +0,0 @@
-# GDB configuration to aid debugging experience
-
-# To enable these customizations edit $HOME/.gdbinit (or ./.gdbinit if local gdbinit is enabled) and add:
-# add-auto-load-safe-path /path/to/imgui.gdb
-# source /path/to/imgui.gdb
-#
-# More Information at:
-# * https://sourceware.org/gdb/current/onlinedocs/gdb/gdbinit-man.html
-# * https://sourceware.org/gdb/current/onlinedocs/gdb/Init-File-in-the-Current-Directory.html#Init-File-in-the-Current-Directory
-
-# Disable stepping into trivial functions
-skip -rfunction Im(Vec2|Vec4|Strv|Vector|Span)::.+
diff --git a/imgui-1.92.1/misc/debuggers/imgui.natstepfilter b/imgui-1.92.1/misc/debuggers/imgui.natstepfilter
deleted file mode 100644
index 6825c93..0000000
--- a/imgui-1.92.1/misc/debuggers/imgui.natstepfilter
+++ /dev/null
@@ -1,31 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-.natstepfilter file for Visual Studio debugger.
-Purpose: instruct debugger to skip some functions when using StepInto (F11)
-
-Since Visual Studio 2022 version 17.6 Preview 2 (currently available as a "Preview" build on March 14, 2023)
-It is possible to add the .natstepfilter file to your project file and it will automatically be used.
-(https://developercommunity.visualstudio.com/t/allow-natstepfilter-and-natjmc-to-be-included-as-p/561718)
-
-For older Visual Studio version prior to 2022 17.6 Preview 2:
-* copy in %USERPROFILE%\Documents\Visual Studio XXXX\Visualizers (current user)
-* or copy in %VsInstallDirectory%\Common7\Packages\Debugger\Visualizers (all users)
-If you have multiple VS version installed, the version that matters is the one you are using the IDE/debugger
-of (not the compiling toolset). This is supported since Visual Studio 2012.
-
-More information at: https://docs.microsoft.com/en-us/visualstudio/debugger/just-my-code?view=vs-2019#BKMK_C___Just_My_Code
--->
-
-<StepFilter xmlns="http://schemas.microsoft.com/vstudio/debugger/natstepfilter/2010">
-
- <!-- Disable stepping into trivial functions -->
- <Function>
- <Name>(ImVec2|ImVec4|ImStrv)::.+</Name>
- <Action>NoStepInto</Action>
- </Function>
- <Function>
- <Name>(ImVector|ImSpan).*::operator.+</Name>
- <Action>NoStepInto</Action>
- </Function>
-
-</StepFilter>
diff --git a/imgui-1.92.1/misc/debuggers/imgui.natvis b/imgui-1.92.1/misc/debuggers/imgui.natvis
deleted file mode 100644
index 13b6360..0000000
--- a/imgui-1.92.1/misc/debuggers/imgui.natvis
+++ /dev/null
@@ -1,58 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<!--
-.natvis file for Visual Studio debugger.
-Purpose: provide nicer views on data types used by Dear ImGui.
-
-To enable:
-* include file in your VS project (most recommended: not intrusive and always kept up to date!)
-* or copy in %USERPROFILE%\Documents\Visual Studio XXXX\Visualizers (current user)
-* or copy in %VsInstallDirectory%\Common7\Packages\Debugger\Visualizers (all users)
-
-More information at: https://docs.microsoft.com/en-us/visualstudio/debugger/create-custom-views-of-native-objects?view=vs-2019
--->
-
-<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
-
-<Type Name="ImVector&lt;*&gt;">
- <DisplayString>{{Size={Size} Capacity={Capacity}}}</DisplayString>
- <Expand>
- <ArrayItems>
- <Size>Size</Size>
- <ValuePointer>Data</ValuePointer>
- </ArrayItems>
- </Expand>
-</Type>
-
-<Type Name="ImSpan&lt;*&gt;">
- <DisplayString>{{Size={DataEnd-Data} }}</DisplayString>
- <Expand>
- <ArrayItems>
- <Size>DataEnd-Data</Size>
- <ValuePointer>Data</ValuePointer>
- </ArrayItems>
- </Expand>
-</Type>
-
-<Type Name="ImVec2">
- <DisplayString>{{x={x,g} y={y,g}}}</DisplayString>
-</Type>
-
-<Type Name="ImVec4">
- <DisplayString>{{x={x,g} y={y,g} z={z,g} w={w,g}}}</DisplayString>
-</Type>
-
-<Type Name="ImRect">
- <DisplayString>{{Min=({Min.x,g} {Min.y,g}) Max=({Max.x,g} {Max.y,g}) Size=({Max.x-Min.x,g} {Max.y-Min.y,g})}}</DisplayString>
- <Expand>
- <Item Name="Min">Min</Item>
- <Item Name="Max">Max</Item>
- <Item Name="[Width]">Max.x - Min.x</Item>
- <Item Name="[Height]">Max.y - Min.y</Item>
- </Expand>
-</Type>
-
-<Type Name="ImGuiWindow">
- <DisplayString>{{Name {Name,s} Active {(Active||WasActive)?1:0,d} Child {(Flags &amp; 0x01000000)?1:0,d} Popup {(Flags &amp; 0x04000000)?1:0,d} Hidden {(Hidden)?1:0,d}}</DisplayString>
-</Type>
-
-</AutoVisualizer>