blob: 5a0bb9b50e37eaed29b09cc355c7c24c1b89bdd0 [file] [log] [blame]
@group(0) @binding(0) var<storage, read_write> prevent_dce : i32;
fn select_c41bd1() -> i32 {
var res : vec4<bool> = select(vec4<bool>(true), vec4<bool>(true), true);
return select(0, 1, all((res == vec4<bool>())));
}
@fragment
fn fragment_main() {
prevent_dce = select_c41bd1();
}
@compute @workgroup_size(1)
fn compute_main() {
prevent_dce = select_c41bd1();
}
struct VertexOutput {
@builtin(position)
pos : vec4<f32>,
@location(0) @interpolate(flat)
prevent_dce : i32,
}
@vertex
fn vertex_main() -> VertexOutput {
var out : VertexOutput;
out.pos = vec4<f32>();
out.prevent_dce = select_c41bd1();
return out;
}