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
/
constructor-19.vert
blob
37975d6b1a28b19aaea3604e43ddc5632df77430
1
/* PASS */
2
#version 120
3
4
void main()
5
{
6
struct s { int i; };
7
8
s temp[2] = s[](s(1), s(2));
9
}