blob: 353e589871d3d0458be372bc52a8e39739dc934c [file] [log] [blame]
fn isInf_7e81b5() {
var res : vec4<bool> = isInf(vec4<f32>());
}
[[stage(vertex)]]
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
isInf_7e81b5();
return vec4<f32>();
}
[[stage(fragment)]]
fn fragment_main() {
isInf_7e81b5();
}
[[stage(compute)]]
fn compute_main() {
isInf_7e81b5();
}