blob: 756d55f3c34a92f9dfd07b2a2a01fcfd048b304c [file] [log] [blame]
fn tan_8ce3e9() {
var res : vec2<f32> = tan(vec2<f32>());
}
[[stage(vertex)]]
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
tan_8ce3e9();
return vec4<f32>();
}
[[stage(fragment)]]
fn fragment_main() {
tan_8ce3e9();
}
[[stage(compute), workgroup_size(1)]]
fn compute_main() {
tan_8ce3e9();
}