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