blob: aa953cf53ecea75b78e2cbaedd3f32dd91d9a78a [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct tint_module_vars_struct {
const constant half2x2* u;
thread half2x2* p;
};
kernel void f(const constant half2x2* u [[buffer(0)]]) {
thread half2x2 p = half2x2(0.0h);
tint_module_vars_struct const tint_module_vars = {.u=u, .p=(&p)};
(*tint_module_vars.p) = (*tint_module_vars.u);
(*tint_module_vars.p)[1] = (*tint_module_vars.u)[0];
(*tint_module_vars.p)[1] = (*tint_module_vars.u)[0].yx;
(*tint_module_vars.p)[0][1] = (*tint_module_vars.u)[1][0];
}