Add more structure constructor tests.
[piglit/hramrach.git] / tests / glslparsertest / glsl2 / unsized-array-non-const-index.vert
blob00db08e9d56a68dbacbe4349064e8579ed2cceac
1 uniform int n;
2 void main()
4         for (int i = 0; i < n; i++) {
5                 gl_TexCoord[i] = vec4(0.5, 0.5, 0.5, 0.5) * float(i);
6         }