blob: 50fca5d2bfaff8a7f57622ea421e15cec53263f0 [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 any_2ab91a(tint_module_vars_struct tint_module_vars) {
bool res = true;
(*tint_module_vars.prevent_dce) = select(0, 1, all(!(res)));
}
float4 vertex_main_inner(tint_module_vars_struct tint_module_vars) {
any_2ab91a(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};
any_2ab91a(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};
any_2ab91a(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)};
}