ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / mesa_shader_integer_functions / compiler / sample-qualifier / fs-sample-temp-disallowed.frag
blob7ce2b674e98a40408576f6a0249831e8ec4b79d7
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 out vec4 out_color;
12 void main()
14         /* x is neither an input nor output, so 'sample' is not
15          * legal here.
16          */
17         sample vec4 x = vec4(1);
18         out_color = x;