| Index: src/pathops/SkQuarticRoot.cpp
|
| diff --git a/src/pathops/SkQuarticRoot.cpp b/src/pathops/SkQuarticRoot.cpp
|
| index dca96ded3acfadbabd7bdc7915d37d15520b0590..e5b486c76c057b99553e1f9a822702fe8870b55e 100644
|
| --- a/src/pathops/SkQuarticRoot.cpp
|
| +++ b/src/pathops/SkQuarticRoot.cpp
|
| @@ -71,7 +71,7 @@ int SkReducedQuarticRoots(const double t4, const double t3, const double t2, con
|
| return num;
|
| }
|
| if (oneHint) {
|
| - SkASSERT(approximately_zero(t4 + t3 + t2 + t1 + t0)); // 1 is one root
|
| + SkASSERT(approximately_zero_double(t4 + t3 + t2 + t1 + t0)); // 1 is one root
|
| // note that -C == A + B + D + E
|
| int num = SkDCubic::RootsReal(t4, t4 + t3, -(t1 + t0), -t0, roots);
|
| for (int i = 0; i < num; ++i) {
|
|
|