blob: 16d8e2433db1e27b64e3f6d977c201dba8aa37ba [file] [log] [blame]
@group(0) @binding(0) var<storage, read_write> S : vec4<f32>;
fn func(pointer : ptr<storage, vec4<f32>, read_write>) {
*pointer = vec4<f32>();
}
@compute @workgroup_size(1)
fn main() {
func(&S);
}