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