blob: 10880ff41e7c4c4a5f3f5177ff611b163333d9e1 [file] [log] [blame]
fn atan2_ae713e() {
var res : vec4<f32> = atan2(vec4<f32>(), vec4<f32>());
}
[[stage(vertex)]]
fn vertex_main() -> [[builtin(position)]] vec4<f32> {
atan2_ae713e();
return vec4<f32>();
}
[[stage(fragment)]]
fn fragment_main() {
atan2_ae713e();
}
[[stage(compute)]]
fn compute_main() {
atan2_ae713e();
}