blob: d1151e492e40c3230f58af7f5bbf4dfa62581421 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct tint_module_vars_struct {
device float2x3* prevent_dce;
};
struct vertex_main_outputs {
float4 tint_symbol [[position]];
};
void tint_store_and_preserve_padding(device float2x3* const target, float2x3 value_param) {
(*target)[0u] = value_param[0u];
(*target)[1u] = value_param[1u];
}
void transpose_ed4bdc(tint_module_vars_struct tint_module_vars) {
float2x3 res = float2x3(float3(1.0f), float3(1.0f));
tint_store_and_preserve_padding(tint_module_vars.prevent_dce, res);
}
float4 vertex_main_inner(tint_module_vars_struct tint_module_vars) {
transpose_ed4bdc(tint_module_vars);
return float4(0.0f);
}
fragment void fragment_main(device float2x3* prevent_dce [[buffer(0)]]) {
tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.prevent_dce=prevent_dce};
transpose_ed4bdc(tint_module_vars);
}
kernel void compute_main(device float2x3* prevent_dce [[buffer(0)]]) {
tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.prevent_dce=prevent_dce};
transpose_ed4bdc(tint_module_vars);
}
vertex vertex_main_outputs vertex_main(device float2x3* prevent_dce [[buffer(0)]]) {
tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.prevent_dce=prevent_dce};
return vertex_main_outputs{.tint_symbol=vertex_main_inner(tint_module_vars)};
}