mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 12:32:52 +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;
|
||
|
}
|