OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2006 The Android Open Source Project | 2 * Copyright 2006 The Android Open Source Project |
3 * | 3 * |
4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
6 */ | 6 */ |
7 | 7 |
8 #ifndef SkDashPathEffect_DEFINED | 8 #ifndef SkDashPathEffect_DEFINED |
9 #define SkDashPathEffect_DEFINED | 9 #define SkDashPathEffect_DEFINED |
10 | 10 |
(...skipping 18 matching lines...) Expand all Loading... |
29 10 pixels on | 29 10 pixels on |
30 20 pixels off | 30 20 pixels off |
31 10 pixels on | 31 10 pixels on |
32 20 pixels off | 32 20 pixels off |
33 ... | 33 ... |
34 A phase of -5, 25, 55, 85, etc. would all result in the same path, | 34 A phase of -5, 25, 55, 85, etc. would all result in the same path, |
35 because the sum of all the intervals is 30. | 35 because the sum of all the intervals is 30. |
36 | 36 |
37 Note: only affects stroked paths. | 37 Note: only affects stroked paths. |
38 */ | 38 */ |
39 static sk_sp<SkPathEffect> Make(const SkScalar intervals[], int count, SkSca
lar phase); | 39 static SkPathEffect* Create(const SkScalar intervals[], int count, SkScalar
phase); |
40 | |
41 #ifdef SK_SUPPORT_LEGACY_PATHEFFECT_PTR | |
42 static SkPathEffect* Create(const SkScalar intervals[], int count, SkScalar
phase) { | |
43 return Make(intervals, count, phase).release(); | |
44 } | |
45 #endif | |
46 | 40 |
47 virtual bool filterPath(SkPath* dst, const SkPath& src, | 41 virtual bool filterPath(SkPath* dst, const SkPath& src, |
48 SkStrokeRec*, const SkRect*) const override; | 42 SkStrokeRec*, const SkRect*) const override; |
49 | 43 |
50 virtual bool asPoints(PointData* results, const SkPath& src, | 44 virtual bool asPoints(PointData* results, const SkPath& src, |
51 const SkStrokeRec&, const SkMatrix&, | 45 const SkStrokeRec&, const SkMatrix&, |
52 const SkRect*) const override; | 46 const SkRect*) const override; |
53 | 47 |
54 DashType asADash(DashInfo* info) const override; | 48 DashType asADash(DashInfo* info) const override; |
55 | 49 |
(...skipping 16 matching lines...) Expand all Loading... |
72 // computed from phase | 66 // computed from phase |
73 | 67 |
74 SkScalar fInitialDashLength; | 68 SkScalar fInitialDashLength; |
75 int32_t fInitialDashIndex; | 69 int32_t fInitialDashIndex; |
76 SkScalar fIntervalLength; | 70 SkScalar fIntervalLength; |
77 | 71 |
78 typedef SkPathEffect INHERITED; | 72 typedef SkPathEffect INHERITED; |
79 }; | 73 }; |
80 | 74 |
81 #endif | 75 #endif |
OLD | NEW |