blob: fb5119ca139f270ffe27a817ec81d76c53509cf4 [file] [log] [blame]
#include <metal_stdlib>
using namespace metal;
struct tint_module_vars_struct {
device uint4* prevent_dce;
};
struct VertexOutput {
float4 pos;
uint4 prevent_dce;
};
struct vertex_main_outputs {
float4 VertexOutput_pos [[position]];
uint4 VertexOutput_prevent_dce [[user(locn0)]] [[flat]];
};
uint4 unpack4xU8_a5ea55() {
uint arg_0 = 1u;
uint const v = arg_0;
uint4 const v_1 = uint4(0u, 8u, 16u, 24u);
uint4 const v_2 = (uint4(v) >> v_1);
uint4 res = (v_2 & uint4(255u));
return res;
}
fragment void fragment_main(device uint4* prevent_dce [[buffer(0)]]) {
tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.prevent_dce=prevent_dce};
(*tint_module_vars.prevent_dce) = unpack4xU8_a5ea55();
}
kernel void compute_main(device uint4* prevent_dce [[buffer(0)]]) {
tint_module_vars_struct const tint_module_vars = tint_module_vars_struct{.prevent_dce=prevent_dce};
(*tint_module_vars.prevent_dce) = unpack4xU8_a5ea55();
}
VertexOutput vertex_main_inner() {
VertexOutput out = {};
out.pos = float4(0.0f);
out.prevent_dce = unpack4xU8_a5ea55();
return out;
}
vertex vertex_main_outputs vertex_main() {
VertexOutput const v_3 = vertex_main_inner();
vertex_main_outputs tint_wrapper_result = {};
tint_wrapper_result.VertexOutput_pos = v_3.pos;
tint_wrapper_result.VertexOutput_prevent_dce = v_3.prevent_dce;
return tint_wrapper_result;
}