|
|
@@ -0,0 +1,29 @@
|
|
|
+<!-- GLM visualizers for Visual Studio 2012 -->
|
|
|
+<!-- Put them into My Documents/Visual Studio 2012/Visualizers/ -->
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
|
|
|
+ <Type Name="glm::detail::tvec2<*>">
|
|
|
+ <DisplayString>({x}, {y})</DisplayString>
|
|
|
+ <Expand>
|
|
|
+ <Item Name="x">x</Item>
|
|
|
+ <Item Name="y">y</Item>
|
|
|
+ </Expand>
|
|
|
+ </Type>
|
|
|
+ <Type Name="glm::detail::tvec3<*>">
|
|
|
+ <DisplayString>({x}, {y}, {z})</DisplayString>
|
|
|
+ <Expand>
|
|
|
+ <Item Name="x">x</Item>
|
|
|
+ <Item Name="y">y</Item>
|
|
|
+ <Item Name="z">z</Item>
|
|
|
+ </Expand>
|
|
|
+ </Type>
|
|
|
+ <Type Name="glm::detail::tvec4<*>">
|
|
|
+ <DisplayString>({x}, {y}, {z}, {w})</DisplayString>
|
|
|
+ <Expand>
|
|
|
+ <Item Name="x">x</Item>
|
|
|
+ <Item Name="y">y</Item>
|
|
|
+ <Item Name="z">z</Item>
|
|
|
+ <Item Name="w">w</Item>
|
|
|
+ </Expand>
|
|
|
+ </Type>
|
|
|
+</AutoVisualizer>
|