blob: 4cbff97837b01c343fe54615d9f9f0d3accfe51b [file] [log] [blame]
RWByteAddressBuffer S : register(u0, space0);
void S_store(uint offset, int value[4]) {
int array_1[4] = value;
{
for(uint i = 0u; (i < 4u); i = (i + 1u)) {
S.Store((offset + (i * 4u)), asuint(array_1[i]));
}
}
}
void func_S_arr() {
const int tint_symbol[4] = (int[4])0;
S_store(0u, tint_symbol);
}
[numthreads(1, 1, 1)]
void main() {
func_S_arr();
return;
}