Index: src/core/SkRasterClip.h |
diff --git a/src/core/SkRasterClip.h b/src/core/SkRasterClip.h |
index 0d09e43e84bf40d0878812791676ec2d306d5697..ec38990a0c78281dfed3f077fbf5508db75547e7 100644 |
--- a/src/core/SkRasterClip.h |
+++ b/src/core/SkRasterClip.h |
@@ -60,8 +60,7 @@ public: |
* intersect, but returning true is a guarantee that they do not. |
*/ |
bool quickReject(const SkIRect& rect) const { |
- return this->isEmpty() || rect.isEmpty() || |
- !SkIRect::Intersects(this->getBounds(), rect); |
+ return !SkIRect::Intersects(this->getBounds(), rect); |
} |
// hack for SkCanvas::getTotalClip |