blob: 57b9aa88c9de0b2f500e4c3c67c92fafbd055619 [file] [log] [blame]
fn select_80a9a9() {
var res : vec3<bool> = select(vec3<bool>(), vec3<bool>(), vec3<bool>());
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
select_80a9a9();
return vec4<f32>();
}
@fragment
fn fragment_main() {
select_80a9a9();
}
@compute @workgroup_size(1)
fn compute_main() {
select_80a9a9();
}