blob: 51bf7c5b3248ca769842c9b3f494af4df95aab56 (
plain)
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
|
// Test that inputs and outputs are assigned the correct location when using
// interface blocks and explicit locations.
[require]
GLSL >= 1.50
GL_ARB_separate_shader_objects
[vertex shader]
#version 150
#extension GL_ARB_separate_shader_objects: require
in vec4 piglit_vertex;
layout(location = 0) out block {
vec4 a;
} name;
layout(location = 2) out block2 {
vec4 a;
} name2;
void main()
{
name.a = vec4(0.0, 1.0, 1.0, 1.0);
name2.a = vec4(1.0, 0.0, 0.0, 1.0);
gl_Position = piglit_vertex;
}
[fragment shader]
#version 150
#extension GL_ARB_separate_shader_objects: require
layout(location = 2) in block {
vec4 a;
} name;
layout(location = 0) in block2 {
vec4 a;
} name2;
out vec4 color;
void main()
{
color = name.a;
}
[test]
draw rect -1 -1 2 2
probe all rgb 1 0 0
|