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