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