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
/
glslparsertest
/
glsl2
/
array-12.vert
blob
35bd81cd7418ff88f6dde8f2248ecdd66fa4f8b5
1
#version 120
2
/* PASS
3
* The array is implicitly sized by the whole-array assignment.
4
*/
5
6
void main()
7
{
8
vec4 a[];
9
10
a = vec4 [2] (vec4(1.0), vec4(2.0));
11
12
gl_Position = gl_Vertex;
13
}