blob: 15bb35023feb258180191d285b68717e629c2a06 [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);
Texture3D<int4> arg_0 : register(t0, space1);
int4 textureLoad_223246() {
int3 v = int3((1u).xxx);
int4 res = int4(arg_0.Load(int4(v, int(int(1)))));
return res;
}
void fragment_main() {
prevent_dce.Store4(0u, asuint(textureLoad_223246()));
}
[numthreads(1, 1, 1)]
void compute_main() {
prevent_dce.Store4(0u, asuint(textureLoad_223246()));
}
VertexOutput vertex_main_inner() {
VertexOutput tint_symbol = (VertexOutput)0;
tint_symbol.pos = (0.0f).xxxx;
tint_symbol.prevent_dce = textureLoad_223246();
VertexOutput v_1 = tint_symbol;
return v_1;
}
vertex_main_outputs vertex_main() {
VertexOutput v_2 = vertex_main_inner();
vertex_main_outputs v_3 = {v_2.prevent_dce, v_2.pos};
return v_3;
}