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