mirror of
https://github.com/libretro/RetroArch
synced 2025-02-08 15:40:14 +00:00
18 lines
289 B
Plaintext
18 lines
289 B
Plaintext
|
RWByteAddressBuffer _10 : register(u0);
|
||
|
cbuffer SPIRV_Cross_NumWorkgroups : register(b0)
|
||
|
{
|
||
|
uint3 SPIRV_Cross_NumWorkgroups_1_count : packoffset(c0);
|
||
|
};
|
||
|
|
||
|
|
||
|
void comp_main()
|
||
|
{
|
||
|
_10.Store3(0, SPIRV_Cross_NumWorkgroups_1_count);
|
||
|
}
|
||
|
|
||
|
[numthreads(1, 1, 1)]
|
||
|
void main()
|
||
|
{
|
||
|
comp_main();
|
||
|
}
|