2013-05-16 13:49:54 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
2012-10-05 14:56:50 +00:00
|
|
|
<!-- GLM visualizers for Visual Studio 2012 -->
|
|
|
|
<!-- Put them into My Documents/Visual Studio 2012/Visualizers/ -->
|
2013-05-16 13:49:54 +00:00
|
|
|
|
2012-10-05 14:56:50 +00:00
|
|
|
<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>
|