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