//
// fragment_main
//
#include <metal_stdlib>
using namespace metal;

struct tint_module_vars_struct {
  device packed_uint3* prevent_dce;
};

uint3 subgroupShuffle_4cbb69() {
  uint3 arg_0 = uint3(1u);
  int arg_1 = 1;
  uint3 res = simd_shuffle(arg_0, arg_1);
  return res;
}

fragment void fragment_main(device packed_uint3* prevent_dce [[buffer(0)]]) {
  tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.prevent_dce=prevent_dce};
  (*tint_module_vars.prevent_dce) = packed_uint3(subgroupShuffle_4cbb69());
}
//
// compute_main
//
#include <metal_stdlib>
using namespace metal;

struct tint_module_vars_struct {
  device packed_uint3* prevent_dce;
};

uint3 subgroupShuffle_4cbb69() {
  uint3 arg_0 = uint3(1u);
  int arg_1 = 1;
  uint3 res = simd_shuffle(arg_0, arg_1);
  return res;
}

[[max_total_threads_per_threadgroup(1)]]
kernel void compute_main(device packed_uint3* prevent_dce [[buffer(0)]]) {
  tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.prevent_dce=prevent_dce};
  (*tint_module_vars.prevent_dce) = packed_uint3(subgroupShuffle_4cbb69());
}
