blob: c8c5c16b9fe7e9fa25a5398da71e88228ad93156 [file] [log] [blame]
enable subgroups;
@group(0) @binding(0) var<storage, read_write> prevent_dce : u32;
fn subgroupInclusiveMul_89437b() -> u32 {
var res : u32 = subgroupInclusiveMul(1u);
return res;
}
@fragment
fn fragment_main() {
prevent_dce = subgroupInclusiveMul_89437b();
}
@compute @workgroup_size(1)
fn compute_main() {
prevent_dce = subgroupInclusiveMul_89437b();
}