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