blob: 4d151a58b2da21874c19e1991aefc1a9f387cf2c [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct tint_module_vars_struct {
device int2* prevent_dce;
};
struct vertex_main_outputs {
float4 tint_symbol [[position]];
};
void insertBits_fe6ba6(tint_module_vars_struct tint_module_vars) {
int2 arg_0 = int2(1);
int2 arg_1 = int2(1);
uint arg_2 = 1u;
uint arg_3 = 1u;
int2 const v = arg_0;
int2 const v_1 = arg_1;
uint const v_2 = arg_3;
uint const v_3 = min(arg_2, 32u);
int2 res = insert_bits(v, v_1, v_3, min(v_2, (32u - v_3)));
(*tint_module_vars.prevent_dce) = res;
}
float4 vertex_main_inner(tint_module_vars_struct tint_module_vars) {
insertBits_fe6ba6(tint_module_vars);
return float4(0.0f);
}
fragment void fragment_main(device int2* prevent_dce [[buffer(0)]]) {
tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.prevent_dce=prevent_dce};
insertBits_fe6ba6(tint_module_vars);
}
kernel void compute_main(device int2* prevent_dce [[buffer(0)]]) {
tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.prevent_dce=prevent_dce};
insertBits_fe6ba6(tint_module_vars);
}
vertex vertex_main_outputs vertex_main(device int2* 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)};
}