blob: 320373d3487286734823e5146ec70e7ddec802a6 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct Uniforms {
uint i;
uint j;
};
struct tint_module_vars_struct {
const constant Uniforms* uniforms;
thread float2x4* m1;
};
kernel void tint_symbol(const constant Uniforms* uniforms [[buffer(0)]]) {
thread float2x4 m1 = float2x4(0.0f);
tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.uniforms=uniforms, .m1=(&m1)};
(*tint_module_vars.m1)[(*tint_module_vars.uniforms).i] = float4(1.0f);
}