ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / mesa_shader_integer_functions / compiler / sample-qualifier / fs-sample-in-no-writes.frag
blob49ef9f28870295a3fcad80214911e1485f9376b1
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 // "Variables declared as ..., or sample in may
9 // not be written to during shader execution."
11 #version 130
12 #extension GL_MESA_shader_integer_functions: require
14 sample in vec4 x;
15 out vec4 out_color;
17 void main()
19         x = vec4(0);    /* not allowed */
20         out_color = vec4(1);