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