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