Index: src/effects/gradients/SkTwoPointConicalGradient.cpp |
diff --git a/src/effects/gradients/SkTwoPointConicalGradient.cpp b/src/effects/gradients/SkTwoPointConicalGradient.cpp |
index b938ebdec7a9bdcbd00b2e4fe26b5b3ab11b593e..2209306fe3877b1d1106dd54fe881d6a99907a0a 100644 |
--- a/src/effects/gradients/SkTwoPointConicalGradient.cpp |
+++ b/src/effects/gradients/SkTwoPointConicalGradient.cpp |
@@ -122,10 +122,10 @@ SkFixed TwoPtRadialContext::nextT() { |
// find_quad_roots returns the values sorted, so we start with the last |
float t = roots[countRoots - 1]; |
float r = lerp(fRec.fRadius, fRec.fDRadius, t); |
- if (r <= 0) { |
+ if (r < 0) { |
t = roots[0]; // might be the same as roots[countRoots-1] |
r = lerp(fRec.fRadius, fRec.fDRadius, t); |
- if (r <= 0) { |
+ if (r < 0) { |
return TwoPtRadial::kDontDrawT; |
} |
} |