blob: c5e8bacf13c7d8f9c9d7d36061ba1e7e5ae6fbb4 [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), workgroup_size(1)]]
fn compute_main() {
isNan_4d280d();
}