mirror of
https://github.com/libretro/RetroArch
synced 2025-02-13 12:40:47 +00:00
501fd33b68
git-subtree-dir: deps/SPIRV-Cross git-subtree-split: d4b0625cbd7377e720b4fa1d63e6a3c09da5db63
27 lines
599 B
Plaintext
27 lines
599 B
Plaintext
static const uint3 gl_WorkGroupSize = uint3(4u, 1u, 1u);
|
|
|
|
void comp_main()
|
|
{
|
|
GroupMemoryBarrier();
|
|
AllMemoryBarrier();
|
|
DeviceMemoryBarrier();
|
|
DeviceMemoryBarrier();
|
|
AllMemoryBarrier();
|
|
GroupMemoryBarrierWithGroupSync();
|
|
AllMemoryBarrier();
|
|
GroupMemoryBarrierWithGroupSync();
|
|
DeviceMemoryBarrier();
|
|
GroupMemoryBarrierWithGroupSync();
|
|
DeviceMemoryBarrier();
|
|
GroupMemoryBarrierWithGroupSync();
|
|
AllMemoryBarrier();
|
|
GroupMemoryBarrierWithGroupSync();
|
|
GroupMemoryBarrierWithGroupSync();
|
|
}
|
|
|
|
[numthreads(4, 1, 1)]
|
|
void main()
|
|
{
|
|
comp_main();
|
|
}
|