Implement the extension GL_ARB_shader_group_vote.

This commit is contained in:
Rex Xu 2016-05-05 20:38:33 +08:00
parent 97f4e0fe19
commit 338b185a2b
10 changed files with 159 additions and 3 deletions

View file

@ -351,6 +351,10 @@ bool TOutputTraverser::visitUnary(TVisit /* visit */, TIntermUnary* node)
case EOpNoise: out.debug << "noise"; break;
case EOpAnyInvocation: out.debug << "anyInvocation"; break;
case EOpAllInvocations: out.debug << "allInvocations"; break;
case EOpAllInvocationsEqual: out.debug << "allInvocationsEqual"; break;
default: out.debug.message(EPrefixError, "Bad unary op");
}