blob: 278a0f455ff7d810b9709e63ae73f2a9775a6245 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
void a(float3x2 m) {
}
void b(float2 v) {
}
void c(float f_1) {
}
kernel void f(const constant float3x2* tint_symbol [[buffer(0)]]) {
a(*(tint_symbol));
b((*(tint_symbol))[1]);
b(float2((*(tint_symbol))[1]).yx);
c((*(tint_symbol))[1][0]);
c(float2((*(tint_symbol))[1]).yx[0]);
return;
}