Add more structure constructor tests.
[piglit/hramrach.git] / tests / glslparsertest / glsl2 / draw_buffers-09.frag
blob19a95122130116417eb9770c2cc1d4784fb4362e
1 /* FAIL - out of bounds access of gl_FragData */
2 #version 110
4 uniform vec4 a;
6 void main()
8   gl_FragData[0] = a;
9   gl_FragData[gl_MaxDrawBuffers] = a;