mirror of
https://github.com/libretro/RetroArch
synced 2025-04-03 01:21:10 +00:00
20 lines
317 B
Plaintext
20 lines
317 B
Plaintext
RWByteAddressBuffer _4 : register(u0);
|
|
|
|
void comp_main()
|
|
{
|
|
uint _21 = _4.Load(_4.Load(0) * 4 + 4);
|
|
for (uint _23 = 0u; _23 < 64u; )
|
|
{
|
|
_4.Store(_23 * 4 + 4, 0u);
|
|
_23++;
|
|
continue;
|
|
}
|
|
_4.Store(_4.Load(0) * 4 + 4, _21);
|
|
}
|
|
|
|
[numthreads(1, 1, 1)]
|
|
void main()
|
|
{
|
|
comp_main();
|
|
}
|