Add more structure constructor tests.
[piglit/hramrach.git] / tests / glslparsertest / glsl2 / invariant-01.vert
blob6e687d5e1590e123d9e50eaead96cf62c2dc0a3a
1 /* PASS - based on examples in the GLSL 1.20 spec */
2 #version 120
4 invariant gl_Position;
6 varying vec3 Color1;
7 invariant Color1;
9 invariant varying vec3 Color2;
11 void main() { }