blob: d8652329ad22f7989fdddfb5db750f27e0516304 [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)]]
fn compute_main() {
acos_dfc915();
}