blob: a103f2941eff61e2103c1c5a8455973f79610aa0 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct tint_module_vars_struct {
device int* prevent_dce;
};
struct vertex_main_outputs {
float4 tint_symbol [[position]];
};
void select_3c25ce(tint_module_vars_struct tint_module_vars) {
bool3 arg_0 = bool3(true);
bool3 arg_1 = bool3(true);
bool arg_2 = true;
bool3 res = select(arg_0, arg_1, arg_2);
(*tint_module_vars.prevent_dce) = select(0, 1, all((res == bool3(false))));
}
float4 vertex_main_inner(tint_module_vars_struct tint_module_vars) {
select_3c25ce(tint_module_vars);
return float4(0.0f);
}
fragment void fragment_main(device int* prevent_dce [[buffer(0)]]) {
tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.prevent_dce=prevent_dce};
select_3c25ce(tint_module_vars);
}
kernel void compute_main(device int* prevent_dce [[buffer(0)]]) {
tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.prevent_dce=prevent_dce};
select_3c25ce(tint_module_vars);
}
vertex vertex_main_outputs vertex_main(device int* prevent_dce [[buffer(0)]]) {
tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.prevent_dce=prevent_dce};
return vertex_main_outputs{.tint_symbol=vertex_main_inner(tint_module_vars)};
}