blob: 086945ac98c3e15c0261c6caef5abe14f94ea646 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct vertex_main_outputs {
float4 tint_symbol [[position]];
};
void select_431dfb() {
bool2 arg_2 = bool2(true);
int2 res = select(int2(1), int2(1), arg_2);
}
float4 vertex_main_inner() {
select_431dfb();
return float4(0.0f);
}
fragment void fragment_main() {
select_431dfb();
}
kernel void compute_main() {
select_431dfb();
}
vertex vertex_main_outputs vertex_main() {
return vertex_main_outputs{.tint_symbol=vertex_main_inner()};
}