blob: e582ee2c64ae4d4bf62651d9792549adbb459ae6 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
float2 func(thread float2* const pointer) {
return *(pointer);
}
kernel void tint_symbol() {
float2x2 F = float2x2(0.0f);
float2 const r = func(&(F[1]));
return;
}