| 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 SkPathEffect* Create(const SkScalar intervals[], int count, SkScalar
phase) { | 39 static SkDashPathEffect* Create(const SkScalar intervals[], int count, |
| 40 SkScalar phase) { |
| 40 return new SkDashPathEffect(intervals, count, phase); | 41 return new SkDashPathEffect(intervals, count, phase); |
| 41 } | 42 } |
| 42 virtual ~SkDashPathEffect(); | 43 virtual ~SkDashPathEffect(); |
| 43 | 44 |
| 44 virtual bool filterPath(SkPath* dst, const SkPath& src, | 45 virtual bool filterPath(SkPath* dst, const SkPath& src, |
| 45 SkStrokeRec*, const SkRect*) const override; | 46 SkStrokeRec*, const SkRect*) const override; |
| 46 | 47 |
| 47 virtual bool asPoints(PointData* results, const SkPath& src, | 48 virtual bool asPoints(PointData* results, const SkPath& src, |
| 48 const SkStrokeRec&, const SkMatrix&, | 49 const SkStrokeRec&, const SkMatrix&, |
| 49 const SkRect*) const override; | 50 const SkRect*) const override; |
| (...skipping 17 matching lines...) Expand all Loading... |
| 67 SkScalar fPhase; | 68 SkScalar fPhase; |
| 68 // computed from phase | 69 // computed from phase |
| 69 SkScalar fInitialDashLength; | 70 SkScalar fInitialDashLength; |
| 70 int32_t fInitialDashIndex; | 71 int32_t fInitialDashIndex; |
| 71 SkScalar fIntervalLength; | 72 SkScalar fIntervalLength; |
| 72 | 73 |
| 73 typedef SkPathEffect INHERITED; | 74 typedef SkPathEffect INHERITED; |
| 74 }; | 75 }; |
| 75 | 76 |
| 76 #endif | 77 #endif |
| OLD | NEW |