blob: 8aa6e6d2b8c7106782c88ca7285c01a177b9a1c5 [file] [log] [blame]
struct VertexOutput {
float4 pos;
uint4 prevent_dce;
};
struct vertex_main_outputs {
nointerpolation uint4 VertexOutput_prevent_dce : TEXCOORD0;
float4 VertexOutput_pos : SV_Position;
};
RWByteAddressBuffer prevent_dce : register(u0);
uint4 unpack4xU8_a5ea55() {
uint arg_0 = 1u;
uint v = arg_0;
uint4 v_1 = uint4(0u, 8u, 16u, 24u);
uint4 v_2 = (uint4((v).xxxx) >> v_1);
uint4 res = (v_2 & uint4((255u).xxxx));
return res;
}
void fragment_main() {
prevent_dce.Store4(0u, unpack4xU8_a5ea55());
}
[numthreads(1, 1, 1)]
void compute_main() {
prevent_dce.Store4(0u, unpack4xU8_a5ea55());
}
VertexOutput vertex_main_inner() {
VertexOutput tint_symbol = (VertexOutput)0;
tint_symbol.pos = (0.0f).xxxx;
tint_symbol.prevent_dce = unpack4xU8_a5ea55();
VertexOutput v_3 = tint_symbol;
return v_3;
}
vertex_main_outputs vertex_main() {
VertexOutput v_4 = vertex_main_inner();
vertex_main_outputs v_5 = {v_4.prevent_dce, v_4.pos};
return v_5;
}