mirror of
https://github.com/libretro/RetroArch
synced 2025-02-01 20:54:10 +00:00
12 lines
135 B
Plaintext
12 lines
135 B
Plaintext
static const uint3 gl_WorkGroupSize = uint3(8u, 4u, 2u);
|
|
|
|
void comp_main()
|
|
{
|
|
}
|
|
|
|
[numthreads(8, 4, 2)]
|
|
void main()
|
|
{
|
|
comp_main();
|
|
}
|