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