blob: f65826ac1ffc9aec50435c9ae1dd380fa5d8b819 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct vertex_main_outputs {
float4 tint_symbol [[position]];
};
void mix_9c2681() {
float3 res = float3(1.0f);
}
float4 vertex_main_inner() {
mix_9c2681();
return float4(0.0f);
}
fragment void fragment_main() {
mix_9c2681();
}
kernel void compute_main() {
mix_9c2681();
}
vertex vertex_main_outputs vertex_main() {
return vertex_main_outputs{.tint_symbol=vertex_main_inner()};
}