fbo-mrt-alphatest: Actually require MRTs to be available.
[piglit.git] / tests / spec / arb_shading_language_420pack / compiler / qualifiers / duplicate-aux-storage-qualifiers.vert
blob0182e412f1003fba341e8750b1e0bc5bfec3a9af
1 /* [config]
2  * expect_result: fail
3  * glsl_version: 1.30
4  * require_extensions: GL_ARB_shading_language_420pack
5  * [end config]
6  *
7  * From the GL_ARB_shading_language_420pack spec:
8  *
9  * "Some input and output qualified variables can be qualified with at most
10  *  one additional auxiliary storage qualifier."
11  *
12  * Test that the same auxiliary storage qualifier twice results in a compile
13  * error.
14  */
15 #version 130
16 #extension GL_ARB_shading_language_420pack: enable
17 centroid centroid out float x;