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