Add more structure constructor tests.
[piglit/hramrach.git] / tests / glslparsertest / glsl2 / function-04.vert
blobdfc0d2b7a6cf1ef1ecfd88517c5de467adc04e95
1 /* FAIL - type mismatch in assignment */
3 vec3 foo(float x, float y, float z)
5   vec3 v;
6   v.x = x;
7   v.y = y;
8   v.z = z;
9   return v;
12 void main()
14   gl_Position = foo(1.0, 1.0, 1.0);