blob: 5b210715b037891e1aeba257f94bf0c402c5201b [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);
Texture1D<uint4> arg_0 : register(t0, space1);
uint4 textureLoad_bc3201() {
uint2 v = (0u).xx;
arg_0.GetDimensions(0u, v.x, v.y);
uint2 v_1 = (0u).xx;
arg_0.GetDimensions(uint(min(1u, (v.y - 1u))), v_1.x, v_1.y);
int v_2 = int(min(1u, (v_1.x - 1u)));
uint4 res = uint4(arg_0.Load(int2(v_2, int(min(1u, (v.y - 1u))))));
return res;
}
void fragment_main() {
prevent_dce.Store4(0u, textureLoad_bc3201());
}
[numthreads(1, 1, 1)]
void compute_main() {
prevent_dce.Store4(0u, textureLoad_bc3201());
}
VertexOutput vertex_main_inner() {
VertexOutput tint_symbol = (VertexOutput)0;
tint_symbol.pos = (0.0f).xxxx;
tint_symbol.prevent_dce = textureLoad_bc3201();
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;
}