Add more structure constructor tests.
[piglit/hramrach.git] / tests / glslparsertest / glsl2 / const-vec-scalar-05.frag
blobde994c0c2af0d79d8a675de84d5160a7b31de2b5
1 #version 120
2 void main()
4    const vec4 t1 = vec4(-1.0, 0.0, -1.0, -1.0);
5    const int one = 1;
6    const vec4 c2 = one + t1;
7    gl_FragColor = c2;