blob: e8b76f442ee8f0d8c622421fc0a3a73fe004aa37 [file] [log] [blame]
fn atanh_e431bb() {
var res = atanh(vec4(0.5));
}
@fragment
fn fragment_main() {
atanh_e431bb();
}
@compute @workgroup_size(1)
fn compute_main() {
atanh_e431bb();
}
struct VertexOutput {
@builtin(position)
pos : vec4<f32>,
}
@vertex
fn vertex_main() -> VertexOutput {
var out : VertexOutput;
out.pos = vec4<f32>();
atanh_e431bb();
return out;
}