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