blob: 2856696f166118a8e236a52b235e44a5539a7686 [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), workgroup_size(1)]]
fn compute_main() {
tanh_5724b3();
}