fbo-mrt-alphatest: Actually require MRTs to be available.
[piglit.git] / tests / spec / arb_shading_language_420pack / compiler / qualifiers / invariant-qual-ordering.vert
blob60dff91a345395faa3fcc9114cf46f99508d4ea4
1 /* [config]
2  * expect_result: pass
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  * '"    Delete the following sentence in the "Invariant Qualifier" section:
10  *
11  *       "The invariant qualifier must appear before any interpolation qualifiers
12  *        or storage qualifiers when combined with a declaration."'
13  *
14  * Test that the invariant qualifier can be used after interpolation and
15  * storage qualifiers.
16  */
17 #version 130
18 #extension GL_ARB_shading_language_420pack: enable
19 out flat invariant float x;