File: link.multiAnonBlocksInvalid.0.1.vert

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

// Error: ColorBlock has different members
layout (std140) uniform ColorBlock
{
	vec4 color2;
};

// Error: Block has different members
layout (std140) uniform Block
{
	mat4 uProj;
	mat4 uWorld;
};

// Error: Vertex has different members
out Vertex
{
	vec4 v1;
	vec4 v2;
};

// Error BufferBlock has different members
buffer BufferBlock
{
	vec4 a;
};

// Error: NamedBlock is anonymous in other compilation unit
layout (std140) uniform NamedBlock
{
	mat4 m;
};


in vec4 P;

vec4 getColor2()
{
	return color2;
}

vec4 getWorld()
{
	return uWorld * P;
	v2 = vec4(1);
}