mirror of
https://github.com/libretro/RetroArch
synced 2025-02-08 15:40:14 +00:00
16 lines
221 B
Plaintext
16 lines
221 B
Plaintext
RWByteAddressBuffer _11 : register(u1);
|
|
|
|
void comp_main()
|
|
{
|
|
uint _14;
|
|
_11.GetDimensions(_14);
|
|
_14 = (_14 - 16) / 16;
|
|
_11.Store(0, uint(int(_14)));
|
|
}
|
|
|
|
[numthreads(1, 1, 1)]
|
|
void main()
|
|
{
|
|
comp_main();
|
|
}
|