blob: 3e60e987439d2e3944b97b87acf9bd9adf67260d [file] [log] [blame]
type RTArr = [[stride(4)]] array<u32>;
struct S {
field0 : RTArr;
};
var<private> x_2 : vec3<u32>;
[[group(0), binding(0)]] var<storage, read_write> x_5 : S;
[[group(0), binding(1)]] var<storage, read_write> x_6 : S;
fn main_1() {
let x_20 : u32 = x_2.x;
let x_22 : u32 = x_5.field0[x_20];
x_6.field0[x_20] = bitcast<u32>(-(bitcast<i32>(x_22)));
return;
}
[[stage(compute), workgroup_size(1, 1, 1)]]
fn main([[builtin(global_invocation_id)]] x_2_param : vec3<u32>) {
x_2 = x_2_param;
main_1();
}