ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / intel_shader_atomic_float_minmax / compiler / shared-atomicMax-float-fail.comp
blob1b3ef577aef56b0af684a22f5c14ac441ef87aba
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         atomicCompSwap(a, 3.14159, 2.71828);