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