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