ext_gpu_shader4: add compiler tests for everything
[piglit.git] / tests / spec / arb_compute_shader / compiler / mismatched_local_size.comp
blob6f83a32131e1aa4793e76fa3b9b960c411d06af6
1 // [config]
2 // expect_result: fail
3 // glsl_version: 3.30
4 // require_extensions: GL_ARB_compute_shader
5 // [end config]
6 //
7 // From the ARB_compute_shader spec:
8 //
9 //     [If an input layout qualifier] is declared more than once in
10 //     the same shader, all those declarations must indicate the same
11 //     local work-group size; otherwise a compile-time error results.
13 #version 330
14 #extension GL_ARB_compute_shader: enable
16 layout(local_size_x = 1, local_size_y = 1, local_size_z = 1) in;
17 layout(local_size_x = 1, local_size_y = 1, local_size_z = 2) in;
19 void main()