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