Commit 4daedcd8 by Chris Forbes

Fix missing case for declarations in glslang AST dump

Cleans up some noise that appears in dumps of pretty much every GLSL shader. Change-Id: I602a6356110803e30fcd8ba9818e56efa70bf5d6 Reviewed-on: https://swiftshader-review.googlesource.com/20769Tested-by: 's avatarChris Forbes <chrisforbes@google.com> Reviewed-by: 's avatarNicolas Capens <nicolascapens@google.com>
parent c89f75b6
......@@ -321,6 +321,8 @@ bool TOutputTraverser::visitAggregate(Visit visit, TIntermAggregate* node)
case EOpMul: out << "component-wise multiply"; break;
case EOpOuterProduct: out << "outer product"; break;
case EOpDeclaration: out << "Declaration"; break;
default: out.message(EPrefixError, "Bad aggregation op");
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment