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