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