Add more structure constructor tests.
[piglit/hramrach.git] / tests / glslparsertest / glsl2 / const-vec-scalar-02.frag
blob2d455c321e652e10966ce48140acbd6a699db6d4
1 void main()
3    const vec4 c1 = vec4(0.5, -0.5, 0.5, -0.5);
4    const vec4 c2 = 1.0 - c1;
5    const vec4 c3 = c2 - 0.5;
6    gl_FragColor = c3;