blob: 5df925499c7a1d2c74c8e6c1b59e50b3493b117b [file] [log] [blame]
fn asinh_180015() {
var res = asinh(1.0);
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
asinh_180015();
return vec4<f32>();
}
@fragment
fn fragment_main() {
asinh_180015();
}
@compute @workgroup_size(1)
fn compute_main() {
asinh_180015();
}