imgui

FORK: Dear ImGui: Bloat-free Graphical User interface for C++ with minimal dependencies
git clone https://git.neptards.moe/neptards/imgui.git
Log | Files | Refs

imgui.natstepfilter (1275B)


      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!--
      3 .natstepfilter file for Visual Studio debugger.
      4 Purpose: instruct debugger to skip some functions when using StepInto (F11)
      5 
      6 To enable:
      7 * copy in %USERPROFILE%\Documents\Visual Studio XXXX\Visualizers (current user)
      8 * or copy in %VsInstallDirectory%\Common7\Packages\Debugger\Visualizers (all users)
      9 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).
     10 This is supported since Visual Studio 2012.
     11 
     12 Unfortunately, unlike .natvis files, it isn't yet possible to include this file in your project :(
     13 You may upvote this: https://developercommunity.visualstudio.com/t/allow-natstepfilter-and-natjmc-to-be-included-as-p/561718
     14 
     15 More information at: https://docs.microsoft.com/en-us/visualstudio/debugger/just-my-code?view=vs-2019#BKMK_C___Just_My_Code
     16 -->
     17 
     18 <StepFilter xmlns="http://schemas.microsoft.com/vstudio/debugger/natstepfilter/2010">
     19 
     20     <!-- Disable stepping into trivial functions -->
     21     <Function>
     22         <Name>(ImVec2|ImVec4|ImStrv)::.+</Name>
     23         <Action>NoStepInto</Action>
     24     </Function>
     25     <Function>
     26         <Name>(ImVector|ImSpan).*::operator.+</Name>
     27         <Action>NoStepInto</Action>
     28     </Function>
     29 
     30 </StepFilter>