diff --git a/tools/visual_studio_natvis/README.txt b/tools/visual_studio_natvis/README.txt new file mode 100644 index 000000000..f766ac0c1 --- /dev/null +++ b/tools/visual_studio_natvis/README.txt @@ -0,0 +1,12 @@ +Hi Davis, +thanks for your work on dlib! + +I have created a natvis file to have nicer debugger visualization of dlib matrices in Visual Studio (2012 - …) and I just wanted to share it with you. + +To test it, copy the file into you folder %USERPROFILE%\My Documents\Visual Studio 2015\Visualizers or %VSINSTALLDIR%\Common7\Packages\Debugger\Visualizers as described here https://msdn.microsoft.com/en-us/library/jj620914.aspx + +It’s certainly extendable, especially to include it into image watch, but currently it may help users to debug much faster. + +Feel free to share it. +Best, + Johannes Huber diff --git a/tools/visual_studio_natvis/dlib.natvis b/tools/visual_studio_natvis/dlib.natvis new file mode 100644 index 000000000..0c1c52060 --- /dev/null +++ b/tools/visual_studio_natvis/dlib.natvis @@ -0,0 +1,51 @@ + + + + + + + + + {{ size= <{$T2}> x <{$T3}> }} + + + $T2 * $T3 + ($T1*)data.data + + + + + + + {{ size={data.nr_} x <{$T2}> }} + + + data.nr_ * $T2 + ($T1*)data.data + + + + + + + {{ size= <{$T2}> x {data.nc_} }} + + + $T2 * data.nc_ + ($T1*)data.data + + + + + + + {{ size= {data.nc_} x {data.nc_} }} + + + data.nr_*data.nc_ + ($T1*)data.data + + + + + \ No newline at end of file