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