blob: 117bb6df1970a419bfd7e25e5e073f2c0b22ac68 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct tint_module_vars_struct {
const device half* in;
device half* out;
};
kernel void tint_symbol(const device half* in [[buffer(0)]], device half* out [[buffer(1)]]) {
tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.in=in, .out=out};
(*tint_module_vars.out) = (*tint_module_vars.in);
}