blob: e653a5c67521e3bd09832e98ed03b325e3dd066c [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) @workgroup_size(1)
fn compute_main() {
cosh_da92dd();
}