gled 2.14.1

gled is an application for creating animations and effects on artnet or dmx installations
1
2
3
4
5
6
7
8
@group(0) @binding(0)
var<storage, read_write> output: array<u32, 4096>;

@compute
@workgroup_size(1)
fn main(@builtin(global_invocation_id) global_id: vec3<u32>) {
    output[global_id.x] = 0u;
}