blob: cb7b4c8e9e0d34daf3eb036f19c1f0fc4a1f2831 [file] [log] [blame]
fn atan2_3c2865() {
const arg_0 = vec3(1);
const arg_1 = vec3(1);
var res = atan2(arg_0, arg_1);
}
@vertex
fn vertex_main() -> @builtin(position) vec4<f32> {
atan2_3c2865();
return vec4<f32>();
}
@fragment
fn fragment_main() {
atan2_3c2865();
}
@compute @workgroup_size(1)
fn compute_main() {
atan2_3c2865();
}