blob: befce49311862c4e7ae2948601480cf3e67d9152 [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 = {.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));
}