mirror of
https://github.com/libretro/RetroArch
synced 2025-04-07 13:23:32 +00:00
14 lines
178 B
Plaintext
14 lines
178 B
Plaintext
static const uint3 gl_WorkGroupSize = uint3(1u, 1u, 1u);
|
|
|
|
RWByteAddressBuffer ssbo0 : register(u0);
|
|
|
|
void comp_main()
|
|
{
|
|
}
|
|
|
|
[numthreads(1, 1, 1)]
|
|
void main()
|
|
{
|
|
comp_main();
|
|
}
|