blob: 3bea7e3fdd71154fcc9f1d02acf8ba994942101f [file] [log] [blame]
fn atanh_c0e634() {
var res : vec2<f32> = atanh(vec2<f32>());
}
@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();
}