Add more structure constructor tests.
[piglit/hramrach.git] / tests / glslparsertest / glsl2 / function-07.vert
blob53666664199da7accdf7205b2e20f581182f3918
1 /* FAIL - function does not return a value */
3 vec4 foo(in float x)
5    vec4 v;
6    v.x = x;
7    v.y = x;
8    v.z = x;
9    v.w = x;
12 void main()
14   gl_Position = foo(2.0);