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