1
0
mirror of https://github.com/libretro/RetroArch synced 2025-03-11 01:13:33 +00:00

14 lines
154 B
Plaintext

#version 310 es
layout(local_size_x = 1) in;
layout(std430, binding = 0) buffer SSBO
{
uvec3 outdata;
};
void main()
{
outdata = gl_NumWorkGroups;
}