blob: c85a427db3ba80514a33f2f457782760c742239a [file] [log] [blame]
fn acosh_ecf2d1() {
var res : f32 = acosh(2.0f);
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
acosh_ecf2d1();
return vec4<f32>();
}
@fragment
fn fragment_main() {
acosh_ecf2d1();
}
@compute @workgroup_size(1)
fn compute_main() {
acosh_ecf2d1();
}