File: glm.natvis

package info (click to toggle)
mame 0.277%2Bdfsg.1-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 907,524 kB
  • sloc: cpp: 5,198,779; xml: 2,214,830; ansic: 750,334; sh: 34,449; lisp: 19,643; python: 16,298; makefile: 13,238; java: 8,492; yacc: 8,152; javascript: 7,083; cs: 6,013; asm: 4,786; ada: 1,681; pascal: 1,195; lex: 1,174; perl: 585; ruby: 373
file content (69 lines) | stat: -rw-r--r-- 1,763 bytes parent folder | download | duplicates (8)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?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::tvec1&lt;*&gt;">
		<DisplayString>{x}</DisplayString>
		<Expand>
			<Item Name="x">x</Item>
		</Expand>
	</Type>

	<Type Name="glm::tvec2&lt;*&gt;">
		<DisplayString>{x}, {y}</DisplayString>
		<Expand>
			<Item Name="x">x</Item>
			<Item Name="y">y</Item>
		</Expand>
	</Type>

	<Type Name="glm::tvec3&lt;*&gt;">
		<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::tvec4&lt;*&gt;">
		<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>

	<!--Type Name="glm::tmat4&lt;*&gt;">
		<DisplayString>{value[0]}, {value[1]}, {value[2]}, {value[3]}</DisplayString>
		<Expand>
			<Item Name="[0]">value[0]</Item>
			<Item Name="[1]">value[1]</Item>
			<Item Name="[2]">value[2]</Item>
			<Item Name="[3]">value[3]</Item>
		</Expand>
	</Type-->

	<Type Name="glm::tquat&lt;*&gt;">
		<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>

	<Type Name="glm::tdualquat&lt;*&gt;">
		<DisplayString>(({real.x}, {real.y}, {real.z}), {real.w}), (({dual.x}, {dual.y}, {dual.z}), {dual.w})</DisplayString>
		<Expand>
			<Item Name="real">real</Item>
			<Item Name="dual">dual</Item>
		</Expand>
	</Type>
</AutoVisualizer>