blob: 10ddc622086a1d9bb7864a40f8190e70e4d6feeb [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct tint_module_vars_struct {
texture1d<uint, access::read_write> arg_0;
};
void textureStore_ff23b3(tint_module_vars_struct tint_module_vars) {
tint_module_vars.arg_0.write(uint4(1u), uint(1));
tint_module_vars.arg_0.fence();
}
fragment void fragment_main(texture1d<uint, access::read_write> arg_0 [[texture(0)]]) {
tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.arg_0=arg_0};
textureStore_ff23b3(tint_module_vars);
}
kernel void compute_main(texture1d<uint, access::read_write> arg_0 [[texture(0)]]) {
tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.arg_0=arg_0};
textureStore_ff23b3(tint_module_vars);
}