diff options
author | reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-01-24 21:03:11 +0000 |
---|---|---|
committer | reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2013-01-24 21:03:11 +0000 |
commit | 4bbdeac58cc928dc66296bde3bd06e78070d96b7 (patch) | |
tree | 71033489f3f329bfc8c422c6e04e1df5b734cdb0 /samplecode | |
parent | 82502e2e3966a9b0e48665f20154eaacd2a452b3 (diff) |
add optional cull-rect to patheffects, so they can do less work if their results
lie outside of the current clip-bounds (the cull rect).
Review URL: https://codereview.appspot.com/7206044
git-svn-id: http://skia.googlecode.com/svn/trunk@7378 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'samplecode')
-rw-r--r-- | samplecode/ClockFaceView.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/samplecode/ClockFaceView.cpp b/samplecode/ClockFaceView.cpp index 9a46e8099c..a182f4df95 100644 --- a/samplecode/ClockFaceView.cpp +++ b/samplecode/ClockFaceView.cpp @@ -110,7 +110,7 @@ class InverseFillPE : public SkPathEffect { public: InverseFillPE() {} virtual bool filterPath(SkPath* dst, const SkPath& src, - SkStrokeRec*) const SK_OVERRIDE { + SkStrokeRec*, const SkRect*) const SK_OVERRIDE { *dst = src; dst->setFillType(SkPath::kInverseWinding_FillType); return true; @@ -198,7 +198,7 @@ protected: SkStrokeRec rec(SkStrokeRec::kFill_InitStyle); SkPath path, dstPath; orig.getTextPath("9", 1, 0, 0, &path); - pe->filterPath(&dstPath, path, &rec); + pe->filterPath(&dstPath, path, &rec, NULL); SkPaint p; p.setAntiAlias(true); |