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