blob: 57193fb8c65f4d268d746002545a3ee54c837fe9 [file] [log] [blame]
fn atan2_57fb13() {
var res : vec2<f32> = atan2(vec2<f32>(), vec2<f32>());
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
atan2_57fb13();
return vec4<f32>();
}
@fragment
fn fragment_main() {
atan2_57fb13();
}
@compute @workgroup_size(1)
fn compute_main() {
atan2_57fb13();
}