4 // require_extensions: GL_ARB_compute_shader
7 // From the ARB_compute_shader spec:
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.
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;