-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaoc.natvis
33 lines (27 loc) · 883 Bytes
/
aoc.natvis
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?xml version="1.0" encoding="utf-8"?>
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
<Type Name="vec<*,2>">
<DisplayString>[{m_data[0]}, {m_data[1]}]</DisplayString>
<Expand>
<Item Name="[x]">m_data[0]</Item>
<Item Name="[y]">m_data[1]</Item>
</Expand>
</Type>
<Type Name="vec<*,3>">
<DisplayString>[{m_data[0]}, {m_data[1]}, {m_data[2]}]</DisplayString>
<Expand>
<Item Name="[x]">m_data[0]</Item>
<Item Name="[y]">m_data[1]</Item>
<Item Name="[z]">m_data[2]</Item>
</Expand>
</Type>
<Type Name="vec<*,4>">
<DisplayString>[{m_data[0]}, {m_data[1]}, {m_data[2]}, {m_data[3]}]</DisplayString>
<Expand>
<Item Name="[x]">m_data[0]</Item>
<Item Name="[y]">m_data[1]</Item>
<Item Name="[z]">m_data[2]</Item>
<Item Name="[w]">m_data[3]</Item>
</Expand>
</Type>
</AutoVisualizer>