blob: 6148ace0f507754b99687c7e976bb838b3b7db5d [file] [log] [blame]
void atan2_96057c() {
float res = atan2(1.0f, 1.0f);
}
void vertex_main() {
atan2_96057c();
return;
}
void fragment_main() {
atan2_96057c();
return;
}
[numthreads(1, 1, 1)]
void compute_main() {
atan2_96057c();
return;
}