perf/pixel-rate: new pixel throughput microbenchmark
[piglit.git] / tests / spec / glsl-1.50 / compiler / interface-blocks-member-qualifier-mismatch.vert
blobfead1d861a10e52da303723a4933d3678bdfa28c
1 // [config]
2 // expect_result: fail
3 // glsl_version: 1.50
4 // check_link: true
5 // [end config]
6 //
7 // Tests that member qualifier matches the interface block type.
8 //
9 // GLSLangSpec.1.50.11, 4.3.7 Interface Blocks:
10 // "Input variables, output variables, and uniform variables can only
11 //  be in in blocks, out blocks, and uniform blocks, respectively."
13 #version 150
15 out block {
16     uniform vec4 a; // illegal: uniform qualifier within out block
17 } inst;
19 void main()