blob: 756d867d911f4b39b9aafb1e7efc36517abafb8c [file] [log] [blame]
fn acos_8e2acf() {
var res : vec4<f32> = acos(vec4<f32>());
}
[[stage(vertex)]]
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
acos_8e2acf();
return vec4<f32>();
}
[[stage(fragment)]]
fn fragment_main() {
acos_8e2acf();
}
[[stage(compute), workgroup_size(1)]]
fn compute_main() {
acos_8e2acf();
}