mepeyew 0.3.5

mepeyew - Small But Powerful Graphics Library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#version 460

layout(local_size_x = 64, 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;
}