Fix #2091, remove incorrect assert for division by 0.0.
This commit is contained in:
parent
70ba66cdbc
commit
82da15f4f0
@ -1079,7 +1079,6 @@ TIntermTyped* TIntermediate::fold(TIntermAggregate* aggrNode)
|
|||||||
{
|
{
|
||||||
double arg0 = childConstUnions[0][arg0comp].getDConst();
|
double arg0 = childConstUnions[0][arg0comp].getDConst();
|
||||||
double arg1 = childConstUnions[1][arg1comp].getDConst();
|
double arg1 = childConstUnions[1][arg1comp].getDConst();
|
||||||
assert(arg1 != 0.0);
|
|
||||||
double result = arg0 - arg1 * floor(arg0 / arg1);
|
double result = arg0 - arg1 * floor(arg0 / arg1);
|
||||||
newConstArray[comp].setDConst(result);
|
newConstArray[comp].setDConst(result);
|
||||||
break;
|
break;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user