ARB_ubo/referenced-by-shader: pass if shader compiler moves UBOs between shaders
[piglit.git] / tests / spec / mesa_shader_integer_functions / compiler / sample-qualifier / fs-sample-out-qualifier.frag
bloba072484bd1b7c302ecc43770e432333ec4f54096
1 // [config]
2 // expect_result: fail
3 // glsl_version: 1.30
4 // require_extensions: GL_MESA_shader_integer_functions
5 // [end config]
7 // From the MESA_shader_integer_functions spec:
8 // "It is an error to use centroid out or sample out in a fragment shader"
10 #version 130
11 #extension GL_MESA_shader_integer_functions: require
13 sample out vec4 x;                      /* not allowed */
14 out vec4 out_color;
16 void main()
18         out_color = x;