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