blob: 6f70c772645101c86bc8f68810729384edb098e4 [file] [log] [blame]
#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());
}