aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/gpu/GrClip.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/gpu/GrClip.h')
-rw-r--r--src/gpu/GrClip.h16
1 files changed, 10 insertions, 6 deletions
diff --git a/src/gpu/GrClip.h b/src/gpu/GrClip.h
index c44653baad..2e247c82f2 100644
--- a/src/gpu/GrClip.h
+++ b/src/gpu/GrClip.h
@@ -90,12 +90,16 @@ public:
*/
template <typename TRect>
constexpr static bool IsOutsideClip(const TRect& outerClipBounds, const SkRect& queryBounds) {
- return outerClipBounds.fRight - outerClipBounds.fLeft <= kBoundsTolerance ||
- outerClipBounds.fBottom - outerClipBounds.fTop <= kBoundsTolerance ||
- outerClipBounds.fLeft >= queryBounds.fRight - kBoundsTolerance ||
- outerClipBounds.fTop >= queryBounds.fBottom - kBoundsTolerance ||
- outerClipBounds.fRight <= queryBounds.fLeft + kBoundsTolerance ||
- outerClipBounds.fBottom <= queryBounds.fTop + kBoundsTolerance;
+ return
+ // Is the clip so small that it is effectively empty?
+ outerClipBounds.fRight - outerClipBounds.fLeft <= kBoundsTolerance ||
+ outerClipBounds.fBottom - outerClipBounds.fTop <= kBoundsTolerance ||
+
+ // Are the query bounds effectively outside the clip?
+ outerClipBounds.fLeft >= queryBounds.fRight - kBoundsTolerance ||
+ outerClipBounds.fTop >= queryBounds.fBottom - kBoundsTolerance ||
+ outerClipBounds.fRight <= queryBounds.fLeft + kBoundsTolerance ||
+ outerClipBounds.fBottom <= queryBounds.fTop + kBoundsTolerance;
}
/**