blob: 10693ebe712e7f15f1aa50a0c1ab05e1a727e171 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct tint_module_vars_struct {
thread half3x3* m;
device half3x3* out;
};
void tint_store_and_preserve_padding(device half3x3* const target, half3x3 value_param) {
(*target)[0u] = value_param[0u];
(*target)[1u] = value_param[1u];
(*target)[2u] = value_param[2u];
}
kernel void f(device half3x3* out [[buffer(0)]]) {
thread half3x3 m = half3x3(half3(0.0h, 1.0h, 2.0h), half3(3.0h, 4.0h, 5.0h), half3(6.0h, 7.0h, 8.0h));
tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.m=(&m), .out=out};
tint_store_and_preserve_padding(tint_module_vars.out, (*tint_module_vars.m));
}