blob: 9a63abac2c9f26339d0f8a6c483a575af24c1d78 [file] [log] [blame]
fn tan_2f030e() {
var res : f32 = tan(1.0);
}
[[stage(vertex)]]
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
tan_2f030e();
return vec4<f32>();
}
[[stage(fragment)]]
fn fragment_main() {
tan_2f030e();
}
[[stage(compute)]]
fn compute_main() {
tan_2f030e();
}