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