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
/
redeclaration-08.vert
blob
4c37afb1dd9d6b8934427c6a56d208b30f90e7c0
1
/* FAIL - like struct-01.vert, but now the other comes first */
2
3
struct foo {
4
float f;
5
int i;
6
bool b;
7
};
8
9
vec4 foo(vec4 a, vec4 b)
10
{
11
return vec4(dot(a, b));
12
}
13