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