blob: b2c83f851e78f4e0bd57e62d764ddde2e8faf17e [file] [log] [blame]
fn cosh_da92dd() {
var res : f32 = cosh(1.0);
}
[[stage(vertex)]]
fn vertex_main() {
cosh_da92dd();
}
[[stage(fragment)]]
fn fragment_main() {
cosh_da92dd();
}
[[stage(compute)]]
fn compute_main() {
cosh_da92dd();
}