blob: 3841424a221027e6fba201a5e58a9abc9cea2cc7 [file] [log] [blame]
struct VertexOutput {
float4 pos;
uint prevent_dce;
};
struct vertex_main_outputs {
nointerpolation uint VertexOutput_prevent_dce : TEXCOORD0;
float4 VertexOutput_pos : SV_Position;
};
RWByteAddressBuffer prevent_dce : register(u0);
uint select_99f883() {
uint arg_0 = 1u;
uint arg_1 = 1u;
bool arg_2 = true;
uint res = ((arg_2) ? (arg_1) : (arg_0));
return res;
}
void fragment_main() {
prevent_dce.Store(0u, select_99f883());
}
[numthreads(1, 1, 1)]
void compute_main() {
prevent_dce.Store(0u, select_99f883());
}
VertexOutput vertex_main_inner() {
VertexOutput tint_symbol = (VertexOutput)0;
tint_symbol.pos = (0.0f).xxxx;
tint_symbol.prevent_dce = select_99f883();
VertexOutput v = tint_symbol;
return v;
}
vertex_main_outputs vertex_main() {
VertexOutput v_1 = vertex_main_inner();
vertex_main_outputs v_2 = {v_1.prevent_dce, v_1.pos};
return v_2;
}