arb_framebuffer_object: add missing MSAA alpha-to-coverage and alpha-to-one tests
[piglit.git] / tests / spec / mesa_shader_integer_functions / compiler / sample-qualifier / fs-sample-centroid-disallowed.frag
blob114f6a2e0791b5a84de0f1f8a663a5c89c05dd4a
1 // [config]
2 // expect_result: fail
3 // glsl_version: 1.30
4 // require_extensions: GL_MESA_shader_integer_functions
5 // [end config]
7 #version 130
8 #extension GL_MESA_shader_integer_functions: require
10 /* At most one aux. storage qualifier is allowed.
11  * Note that strictly speaking, under gpu_shader5 / GLSL 4.00,
12  * the storage qualifier is the entire 'centroid in' or 'sample in',
13  * but we use the wording from shading_language_420pack / GLSL 4.20.
14  *
15  * A strict gpu_shader5 / GLSL 4.00 implementation should reject this
16  * too.
17  */
18 sample centroid in vec4 x;
19 out vec4 out_color;
21 void main()
23         out_color = x;