blob: e3f130c4120fb6cc5d49ef590f9c1cfa2d9c3c10 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct tint_module_vars_struct {
device float3x3* out;
};
void tint_store_and_preserve_padding(device float3x3* const target, float3x3 value_param) {
(*target)[0u] = value_param[0u];
(*target)[1u] = value_param[1u];
(*target)[2u] = value_param[2u];
}
kernel void f(device float3x3* out [[buffer(0)]]) {
tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.out=out};
float3x3 m = float3x3(float3(0.0f), float3(0.0f), float3(0.0f));
tint_store_and_preserve_padding(tint_module_vars.out, float3x3(m));
}