From 8f90a892c5130d4d26b5588e1ff151d01a40688a Mon Sep 17 00:00:00 2001 From: "robertphillips@google.com" Date: Fri, 28 Feb 2014 18:19:39 +0000 Subject: add new onClip* methods to SkCanvas https://codereview.chromium.org/183453002/ git-svn-id: http://skia.googlecode.com/svn/trunk@13627 2bbb7eff-a529-9590-31e7-b0007b416f81 --- src/utils/SkNoSaveLayerCanvas.h | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) (limited to 'src/utils/SkNoSaveLayerCanvas.h') diff --git a/src/utils/SkNoSaveLayerCanvas.h b/src/utils/SkNoSaveLayerCanvas.h index 58d28b40b1..60fad87237 100644 --- a/src/utils/SkNoSaveLayerCanvas.h +++ b/src/utils/SkNoSaveLayerCanvas.h @@ -32,25 +32,20 @@ public: return count; } +protected: // disable aa for speed - virtual bool clipRect(const SkRect& rect, - SkRegion::Op op, - bool doAA) SK_OVERRIDE { - return this->INHERITED::clipRect(rect, op, false); + virtual void onClipRect(const SkRect& rect, SkRegion::Op op, ClipEdgeStyle) SK_OVERRIDE { + this->INHERITED::onClipRect(rect, op, kHard_ClipEdgeStyle); } // for speed, just respect the bounds, and disable AA. May give us a few // false positives and negatives. - virtual bool clipPath(const SkPath& path, - SkRegion::Op op, - bool doAA) SK_OVERRIDE { - return this->updateClipConservativelyUsingBounds(path.getBounds(), op, - path.isInverseFillType()); + virtual void onClipPath(const SkPath& path, SkRegion::Op op, ClipEdgeStyle) SK_OVERRIDE { + this->updateClipConservativelyUsingBounds(path.getBounds(), op, + path.isInverseFillType()); } - virtual bool clipRRect(const SkRRect& rrect, - SkRegion::Op op, - bool doAA) SK_OVERRIDE { - return this->updateClipConservativelyUsingBounds(rrect.getBounds(), op, false); + virtual void onClipRRect(const SkRRect& rrect, SkRegion::Op op, ClipEdgeStyle) SK_OVERRIDE { + this->updateClipConservativelyUsingBounds(rrect.getBounds(), op, false); } private: -- cgit v1.2.3