ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / arb_shading_language_420pack / compiler / qualifiers / no-interpolation-qual-on-fs-output.frag
blob3411f3591677d54c6f908511abcb2aa25a18b211
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  *    "It is an error to use auxiliary storage qualifiers or interpolation 
10  *     qualifiers on an output in a fragment shader."
11  *
12  * Test that an interpolation qualifier on a fragment shader output results in
13  * a compile error.
14  */
15 #version 130
16 #extension GL_ARB_shading_language_420pack: enable
17 flat out float x;