blob: 2d93d9b494796e97259f6475c4bb9680f0ebe110 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct vertex_main_outputs {
float4 tint_symbol [[position]];
};
void atan2_c4be45() {
float4 res = float4(0.78539818525314331055f);
}
float4 vertex_main_inner() {
atan2_c4be45();
return float4(0.0f);
}
fragment void fragment_main() {
atan2_c4be45();
}
kernel void compute_main() {
atan2_c4be45();
}
vertex vertex_main_outputs vertex_main() {
return vertex_main_outputs{.tint_symbol=vertex_main_inner()};
}