blob: 5a748934db3f4782305e354c60b31fbc03ee9957 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
void a(half3x2 m) {
}
void b(half2 v) {
}
void c(half f_1) {
}
kernel void f(const constant half3x2* 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;
}