summaryrefslogtreecommitdiffstats
path: root/lib/imgui-1.90.7/misc/debuggers/imgui.natstepfilter
diff options
context:
space:
mode:
authorgrm <grm@eyesin.space>2026-03-14 02:29:15 +0200
committergrm <grm@eyesin.space>2026-03-14 02:29:15 +0200
commit650e5afde271d22b3653832daf339e1bd09a10d6 (patch)
treecc5e536b0150de1109daa43a055547d2266e60dd /lib/imgui-1.90.7/misc/debuggers/imgui.natstepfilter
parent20e64711ce2a09b657fb79d59cb824e9e34d2b07 (diff)
downloadcgame-master.tar.gz
cgame-master.tar.bz2
cgame-master.zip
Migrate to imgui 1.92.6 and SDL3HEADmaster
Diffstat (limited to 'lib/imgui-1.90.7/misc/debuggers/imgui.natstepfilter')
-rw-r--r--lib/imgui-1.90.7/misc/debuggers/imgui.natstepfilter31
1 files changed, 0 insertions, 31 deletions
diff --git a/lib/imgui-1.90.7/misc/debuggers/imgui.natstepfilter b/lib/imgui-1.90.7/misc/debuggers/imgui.natstepfilter
deleted file mode 100644
index 6825c93..0000000
--- a/lib/imgui-1.90.7/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>