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
/
function-02.vert
blob
941fcc1ef7b63b07f96895972c9633c749b1f44e
1
/* FAIL - no version of 'foo' matches the call to 'foo' */
2
3
vec4 foo(float x, float y, float z, float w)
4
{
5
vec4 v;
6
v.x = x;
7
v.y = y;
8
v.z = z;
9
v.w = w;
10
return v;
11
}
12
13
void main()
14
{
15
gl_Position = foo(1.0, 1.0, 1.0);
16
}