perf/pixel-rate: new pixel throughput microbenchmark
[piglit.git] / tests / spec / glsl-1.50 / compiler / interface-blocks-containing-unsized-arrays.vert
blobac0d495df6abc499d6cf396b7c6bc566dbf20fdb
1 // [config]
2 // expect_result: pass
3 // glsl_version: 1.50
4 // check_link: true
5 // [end config]
6 //
7 // Test that an interface block may contain members which are unsized
8 // arrays.  Both GLSL 1.10 and GLSL 1.20 style array declarations are
9 // tested.
11 #version 150
13 out block {
14   float foo[];
15   float[] bar;
16 } inst;
18 void main()