blob: dd9f0f01950b8089f0c420f17e35660eadbeca0e [file] [log] [blame]
fn tanh_5724b3() {
var res : vec2<f32> = tanh(vec2<f32>());
}
[[stage(vertex)]]
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
tanh_5724b3();
return vec4<f32>();
}
[[stage(fragment)]]
fn fragment_main() {
tanh_5724b3();
}
[[stage(compute)]]
fn compute_main() {
tanh_5724b3();
}