blob: 8a87969e7c796255b9c7dcf3ff7014b3384bb68f [file] [log] [blame]
struct VertexOutput {
float4 pos;
int4 prevent_dce;
};
struct vertex_main_outputs {
nointerpolation int4 VertexOutput_prevent_dce : TEXCOORD0;
float4 VertexOutput_pos : SV_Position;
};
RWByteAddressBuffer prevent_dce : register(u0);
Texture2DArray<int4> arg_1 : register(t1, space1);
SamplerState arg_2 : register(s2, space1);
int4 textureGather_8b754c() {
float2 arg_3 = (1.0f).xx;
int arg_4 = int(1);
float2 v = arg_3;
int4 res = arg_1.GatherGreen(arg_2, float3(v, float(arg_4)));
return res;
}
void fragment_main() {
prevent_dce.Store4(0u, asuint(textureGather_8b754c()));
}
[numthreads(1, 1, 1)]
void compute_main() {
prevent_dce.Store4(0u, asuint(textureGather_8b754c()));
}
VertexOutput vertex_main_inner() {
VertexOutput tint_symbol = (VertexOutput)0;
tint_symbol.pos = (0.0f).xxxx;
tint_symbol.prevent_dce = textureGather_8b754c();
VertexOutput v_1 = tint_symbol;
return v_1;
}
vertex_main_outputs vertex_main() {
VertexOutput v_2 = vertex_main_inner();
VertexOutput v_3 = v_2;
VertexOutput v_4 = v_2;
vertex_main_outputs v_5 = {v_4.prevent_dce, v_3.pos};
return v_5;
}