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