Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(149)

Side by Side Diff: gm/arcto.cpp

Issue 1813123003: Reland of "switch patheffects over to sk_sp (patchset #5 id:80001 of https://codereview.chromium.or… (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: move flag into sktypes, so it is visible to both paint and other patheffect clients Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « bench/DashBench.cpp ('k') | gm/bug530095.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2016 Google Inc. 2 * Copyright 2016 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BD-style license that can be 4 * Use of this source code is governed by a BD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "gm.h" 8 #include "gm.h"
9 #include "SkParsePath.h" 9 #include "SkParsePath.h"
10 #include "SkPath.h" 10 #include "SkPath.h"
(...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after
216 p.setStrokeWidth(100); 216 p.setStrokeWidth(100);
217 p.setAntiAlias(true); 217 p.setAntiAlias(true);
218 p.setColor(0xFF008200); 218 p.setColor(0xFF008200);
219 p.setStrokeCap(SkPaint::kSquare_Cap); 219 p.setStrokeCap(SkPaint::kSquare_Cap);
220 SkPath path; 220 SkPath path;
221 SkParsePath::FromSVGString(d, &path); 221 SkParsePath::FromSVGString(d, &path);
222 SkPathMeasure meas(path, false); 222 SkPathMeasure meas(path, false);
223 SkScalar length = meas.getLength(); 223 SkScalar length = meas.getLength();
224 SkScalar intervals[] = {0, length }; 224 SkScalar intervals[] = {0, length };
225 int intervalCount = (int) SK_ARRAY_COUNT(intervals); 225 int intervalCount = (int) SK_ARRAY_COUNT(intervals);
226 p.setPathEffect(SkDashPathEffect::Create(intervals, intervalCount, 0))->unref( ); 226 p.setPathEffect(SkDashPathEffect::Make(intervals, intervalCount, 0));
227 canvas->drawPath(path, p); 227 canvas->drawPath(path, p);
228 } 228 }
OLDNEW
« no previous file with comments | « bench/DashBench.cpp ('k') | gm/bug530095.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698