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