File: link.vk.multiBlocksValid.1.0.geom

package info (click to toggle)
glslang 16.2.0-2
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 51,712 kB
  • sloc: cpp: 92,305; yacc: 4,320; sh: 603; python: 305; ansic: 94; javascript: 74; makefile: 17
file content (62 lines) | stat: -rw-r--r-- 901 bytes parent folder | download | duplicates (12)
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
#version 430

layout (triangles) in;
layout (triangle_strip, max_vertices = 3) out;

// OK: different instance names is allowed
layout (std140, binding = 0) uniform MatrixBlock
{
	mat4 uProj;
	mat4 uWorld;
} uM;

// Verify that in/out blocks with same block name work
in Vertex
{
	vec4 v1;
	vec4 v2;
} iV[3];

out Vertex
{
	vec4 val1;
} oV;

// OK: different instance names is allowed
layout (std140, binding = 1) uniform ColorBlock
{
	vec4 color1;
	bool b;
	vec4 color2;
	vec4 color3;
} uC;

// OK: different instance names is allowed
layout (std430, binding = 1) buffer BufferBlock
{
	mat4 p;
} uBuf;

vec4 getWorld(int i);
vec4 getColor2();

out vec4 oColor;

float globalF;

void
main()
{
	oColor = uC.color1 * getColor2();

	globalF = 1.0;

	for (int i = 0; i < 3; i++)
	{
		gl_Position = uM.uProj * getWorld(i);
		oV.val1 = uC.color1 + iV[i].v2 * globalF;
		EmitVertex();
	}

	EndPrimitive();
}