repo.or.cz
/
piglit
/
hramrach.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add more structure constructor tests.
[piglit/hramrach.git]
/
tests
/
shaders
/
glsl-fs-uniform-array-2.shader_test
blob
2dbad7a7cfb07629de44e71b5959600f00c6c834
1
[require]
2
GL >= 2.0
3
GLSL >= 1.10
4
5
[vertex shader]
6
void main()
7
{
8
gl_Position = gl_Vertex;
9
}
10
11
[fragment shader]
12
uniform vec4 arg[4];
13
void main()
14
{
15
gl_FragColor = arg[int(arg[0].x)];
16
}
17
18
[test]
19
uniform vec4 arg[0] 1.0 0.0 0.0 0.0
20
uniform vec4 arg[1] 0.0 1.0 0.0 0.0
21
uniform vec4 arg[2] 0.0 0.0 1.0 0.0
22
uniform vec4 arg[3] 1.0 0.0 1.0 0.0
23
draw rect -1 -1 2 2
24
probe rgb 1 1 0.0 1.0 0.0