blob: 24807be11d85d4dd3b708ec25ff5e5ac8fe9be88 [file] [log] [blame]
fn acos_a610c4() {
var res : vec3<f32> = acos(vec3<f32>());
}
@stage(vertex)
fn vertex_main() -> @builtin(position) vec4<f32> {
acos_a610c4();
return vec4<f32>();
}
@stage(fragment)
fn fragment_main() {
acos_a610c4();
}
@stage(compute) @workgroup_size(1)
fn compute_main() {
acos_a610c4();
}