blob: 81aaa7c3d894b816dd12458a57f83a08744ba98d [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct tint_module_vars_struct {
device uint3* prevent_dce;
texture3d<uint, access::read_write> arg_0;
};
uint3 textureDimensions_0276ec(tint_module_vars_struct tint_module_vars) {
uint const v = tint_module_vars.arg_0.get_width(0u);
uint const v_1 = tint_module_vars.arg_0.get_height(0u);
uint3 res = uint3(v, v_1, tint_module_vars.arg_0.get_depth(0u));
return res;
}
fragment void fragment_main(device uint3* prevent_dce [[buffer(0)]], texture3d<uint, access::read_write> arg_0 [[texture(0)]]) {
tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.prevent_dce=prevent_dce, .arg_0=arg_0};
(*tint_module_vars.prevent_dce) = textureDimensions_0276ec(tint_module_vars);
}
kernel void compute_main(device uint3* prevent_dce [[buffer(0)]], texture3d<uint, access::read_write> arg_0 [[texture(0)]]) {
tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.prevent_dce=prevent_dce, .arg_0=arg_0};
(*tint_module_vars.prevent_dce) = textureDimensions_0276ec(tint_module_vars);
}