mirror of
https://github.com/libretro/RetroArch
synced 2025-02-03 08:54:13 +00:00
11 lines
195 B
GLSL
11 lines
195 B
GLSL
#version 450
|
|
#extension GL_KHR_shader_subgroup_basic : require
|
|
|
|
layout(location = 0) out uvec2 FragColor;
|
|
|
|
void main()
|
|
{
|
|
FragColor.x = gl_SubgroupSize;
|
|
FragColor.y = gl_SubgroupInvocationID;
|
|
}
|