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