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