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