ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / intel_shader_atomic_float_minmax / compiler / shared-atomicMin-float-fail.comp
blob8f58bb52052f7619abdbdcefcf6a84caf70bf618
1 // [config]
2 // expect_result: fail
3 // glsl_version: 1.50
4 // require_extensions: GL_ARB_compute_shader GL_INTEL_shader_atomic_float_minmax
5 // [end config]
6 //
7 // The extension is supported by the implementation, but it is not enabled in
8 // the shader.  This should fail to compile.
10 #version 150
11 #extension GL_ARB_compute_shader: require
13 layout(local_size_x = 32) in;
15 shared float a;
17 void main()
19         atomicMin(a, 1.7);