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