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