Commit 0783efd8 by Zhenyao Mo

Fix initialization sequence translation bug.

parent 70a0b2a1
...@@ -743,7 +743,7 @@ bool TOutputGLSLBase::visitAggregate(Visit visit, TIntermAggregate *node) ...@@ -743,7 +743,7 @@ bool TOutputGLSLBase::visitAggregate(Visit visit, TIntermAggregate *node)
writeBuiltInFunctionTriplet(visit, "notEqual(", useEmulatedFunction); writeBuiltInFunctionTriplet(visit, "notEqual(", useEmulatedFunction);
break; break;
case EOpComma: case EOpComma:
writeTriplet(visit, NULL, ", ", NULL); writeTriplet(visit, "(", ", ", ")");
break; break;
case EOpMod: case EOpMod:
......
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