blob: 2b5b71417b8ce6f4fb56817dff5d94a63710a8b6 [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};
}