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