blob: 3f22b94aaf4d888e259cf210cdc12edb8731c5d1 [file] [log] [blame]
fn asinh_180015() {
var res = asinh(1);
}
@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();
}