bloat-buster/dependencies/glslang-15.0.0/Test/spv.subgroupSizeARB.frag
David Gonzalez Martin be2de1d672 Render a texture
2024-11-10 08:48:46 -06:00

11 lines
195 B
GLSL

#version 450
#extension GL_ARB_shader_ballot : enable
#extension GL_KHR_shader_subgroup_basic : enable
layout(location = 0) out uint result;
void main (void)
{
result = gl_SubGroupSizeARB;
}