c32931e2c7
Signed-off-by: Pavel Kirilin <s3riussan@gmail.com>
13 lines
230 B
GLSL
13 lines
230 B
GLSL
#version 460
|
|
|
|
layout(local_size_x = 32, local_size_y = 1, local_size_z = 1) in;
|
|
|
|
layout(set = 0, binding = 0) buffer Data {
|
|
uint data[];
|
|
} buf;
|
|
|
|
void main() {
|
|
uint idx = gl_GlobalInvocationID.x;
|
|
buf.data[idx] *= 12;
|
|
}
|