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