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