SPIRV-Cross/shaders-hlsl-no-opt/frag/helper-invocation.fxconly.nofxc.frag
2022-03-04 10:58:40 +01:00

12 lines
222 B
GLSL

#version 450
#extension GL_EXT_demote_to_helper_invocation : require
layout(location = 0) out float FragColor;
void main()
{
FragColor = float(gl_HelperInvocation);
demote;
FragColor = float(helperInvocationEXT());
}