blob: b1ae91f1eb0ffbf1125e7e9c6ddf0a730790d1ba [file] [log] [blame]
fn atan2_c4be45() {
var res = atan2(vec4(1.0), vec4(1.0));
}
@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();
}