-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvectormath_types.natvis
50 lines (39 loc) · 1.15 KB
/
vectormath_types.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?xml version="1.0" encoding="utf-8"?>
<AutoVisualizer xmlns="http://schemas.microsoft.com/vstudio/debugger/natvis/2010">
<Type Name="vec2">
<DisplayString>{x}, {y}</DisplayString>
</Type>
<Type Name="vec3">
<DisplayString>{x}, {y}, {z}</DisplayString>
</Type>
<Type Name="vec4">
<DisplayString>{x}, {y}, {z}, {w}</DisplayString>
</Type>
<Type Name="ivec2">
<DisplayString>{x}, {y}</DisplayString>
</Type>
<Type Name="ivec3">
<DisplayString>{x}, {y}, {z}</DisplayString>
</Type>
<Type Name="ivec4">
<DisplayString>{x}, {y}, {z}, {w}</DisplayString>
</Type>
<Type Name="uvec2">
<DisplayString>{x}, {y}</DisplayString>
</Type>
<Type Name="uvec3">
<DisplayString>{x}, {y}, {z}</DisplayString>
</Type>
<Type Name="uvec4">
<DisplayString>{x}, {y}, {z}, {w}</DisplayString>
</Type>
<Type Name="mat2">
<DisplayString>{rows[0]}, {rows[1]}}</DisplayString>
</Type>
<Type Name="mat3">
<DisplayString>{rows[0]}, {rows[1]}, {rows[2]}}</DisplayString>
</Type>
<Type Name="mat4">
<DisplayString>{rows[0]}, {rows[1]}, {rows[2]}, {rows[3]}}</DisplayString>
</Type>
</AutoVisualizer>