Commit 47a21828 by ZhiqianXia

fix a typo

parent 53e0e6a5
...@@ -599,7 +599,7 @@ TIntermTyped* TIntermConstantUnion::fold(TOperator op, const TType& returnType) ...@@ -599,7 +599,7 @@ TIntermTyped* TIntermConstantUnion::fold(TOperator op, const TType& returnType)
newConstArray[i].setDConst(log(unionArray[i].getDConst())); newConstArray[i].setDConst(log(unionArray[i].getDConst()));
break; break;
case EOpExp2: case EOpExp2:
newConstArray[i].setDConst(exp2(unionArray[i].getDConst()); newConstArray[i].setDConst(exp2(unionArray[i].getDConst()));
break; break;
case EOpLog2: case EOpLog2:
newConstArray[i].setDConst(log2(unionArray[i].getDConst())); newConstArray[i].setDConst(log2(unionArray[i].getDConst()));
......
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