blob: 4af62e1c5cb09daf5c07cb577e36dc0f3f31d7f8 [file] [log] [blame]
//
// fragment_main
//
RWTexture3D<uint4> arg_0 : register(u0, space1);
void textureStore_8b99ce() {
int3 arg_1 = (int(1)).xxx;
uint4 arg_2 = (1u).xxxx;
arg_0[arg_1] = arg_2;
}
void fragment_main() {
textureStore_8b99ce();
}
//
// compute_main
//
RWTexture3D<uint4> arg_0 : register(u0, space1);
void textureStore_8b99ce() {
int3 arg_1 = (int(1)).xxx;
uint4 arg_2 = (1u).xxxx;
arg_0[arg_1] = arg_2;
}
[numthreads(1, 1, 1)]
void compute_main() {
textureStore_8b99ce();
}