From 9797272edfc73f18b4807751377518317991b880 Mon Sep 17 00:00:00 2001 From: "reed@google.com" Date: Thu, 24 May 2012 20:13:57 +0000 Subject: Change patheffect to take a (new) StrokeRec object, which encapsulates the fill or stroke parameters for a path. Today, the patheffect only sees if the caller was going to stroke or fill, and if stroke, it just sees the width. With this change, the effect can see all of the related parameters (e.g. cap/join/miter). No other change is intended at this time. After this change, I hope to use this additional data to allow SkDashPathEffect to, at times, apply the stroke as part of its effect, which may be much more efficient than first dashing, and then reading that and stroking it. Most of these files changed just because of the new parameter to filterPath. The key changes are in SkPathEffect.[h,cpp], SkPaint.cpp and SkScalerContext.cpp Review URL: https://codereview.appspot.com/6249050 git-svn-id: http://skia.googlecode.com/svn/trunk@4046 2bbb7eff-a529-9590-31e7-b0007b416f81 --- bench/DashBench.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bench/DashBench.cpp') diff --git a/bench/DashBench.cpp b/bench/DashBench.cpp index e9969c47ce..215581603e 100644 --- a/bench/DashBench.cpp +++ b/bench/DashBench.cpp @@ -204,9 +204,9 @@ protected: virtual void onDraw(SkCanvas* canvas) SK_OVERRIDE { SkPath dst; for (int i = 0; i < N; ++i) { - SkScalar width = 0; + SkStrokeRec rec(SkStrokeRec::kHairline_InitStyle); - fPE->filterPath(&dst, fPath, &width); + fPE->filterPath(&dst, fPath, &rec); dst.rewind(); } } -- cgit v1.2.3