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