blob: 8e9600d715aea0d39c6448e631717a24b6396f8d [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);
Texture3D<uint4> arg_0 : register(t0, space1);
uint4 textureLoad_1c562a() {
int3 v = int3((1u).xxx);
uint4 res = uint4(arg_0.Load(int4(v, int(1u))));
return res;
}
void fragment_main() {
prevent_dce.Store4(0u, textureLoad_1c562a());
}
[numthreads(1, 1, 1)]
void compute_main() {
prevent_dce.Store4(0u, textureLoad_1c562a());
}
VertexOutput vertex_main_inner() {
VertexOutput tint_symbol = (VertexOutput)0;
tint_symbol.pos = (0.0f).xxxx;
tint_symbol.prevent_dce = textureLoad_1c562a();
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;
}