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