blob: b4fe9ae05d9b1694f64ee8bee2c65cde9c4ccc8f [file] [log] [blame]
fn select_c41bd1() {
var res : vec4<bool> = select(vec4<bool>(true), vec4<bool>(true), true);
prevent_dce = select(0, 1, all((res == vec4<bool>())));
}
@group(2) @binding(0) var<storage, read_write> prevent_dce : i32;
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
select_c41bd1();
return vec4<f32>();
}
@fragment
fn fragment_main() {
select_c41bd1();
}
@compute @workgroup_size(1)
fn compute_main() {
select_c41bd1();
}