mirror of
https://github.com/g-truc/glm.git
synced 2024-11-10 04:31:47 +00:00
31 lines
908 B
XML
31 lines
908 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- GLM visualizers for Visual Studio 2012 -->
|
|
<!-- Put them into My Documents/Visual Studio 2012/Visualizers/ -->
|
|
|
|
<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> |