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