2023-03-31 17:55:19 +00:00
|
|
|
cbuffer cbuffer_ubo : register(b0) {
|
2021-12-18 21:28:23 +00:00
|
|
|
uint4 ubo[1];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct S {
|
|
|
|
int data[64];
|
|
|
|
};
|
|
|
|
|
2023-03-31 17:55:19 +00:00
|
|
|
RWByteAddressBuffer result : register(u1);
|
2021-12-18 21:28:23 +00:00
|
|
|
static S s = (S)0;
|
|
|
|
|
|
|
|
[numthreads(1, 1, 1)]
|
|
|
|
void f() {
|
|
|
|
{
|
|
|
|
int tint_symbol_2[64] = s.data;
|
|
|
|
tint_symbol_2[asint(ubo[0].x)] = 1;
|
|
|
|
s.data = tint_symbol_2;
|
|
|
|
}
|
|
|
|
result.Store(0u, asuint(s.data[3]));
|
|
|
|
return;
|
|
|
|
}
|