blob: b67035e2ef51cc3a80aa7ac1e219a14545c11098 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct str {
float4 i;
};
void func(thread float4* const pointer) {
*(pointer) = float4(0.0f);
}
kernel void tint_symbol() {
str F = {};
func(&(F.i));
return;
}