OLD | NEW |
1 | 1 |
2 /* | 2 /* |
3 * Copyright 2006 The Android Open Source Project | 3 * Copyright 2006 The Android Open Source Project |
4 * | 4 * |
5 * Use of this source code is governed by a BSD-style license that can be | 5 * Use of this source code is governed by a BSD-style license that can be |
6 * found in the LICENSE file. | 6 * found in the LICENSE file. |
7 */ | 7 */ |
8 | 8 |
9 | 9 |
10 #include "Sk2DPathEffect.h" | 10 #include "Sk2DPathEffect.h" |
11 #include "SkReadBuffer.h" | 11 #include "SkReadBuffer.h" |
12 #include "SkWriteBuffer.h" | 12 #include "SkWriteBuffer.h" |
13 #include "SkPath.h" | 13 #include "SkPath.h" |
14 #include "SkRegion.h" | 14 #include "SkRegion.h" |
| 15 #include "SkStrokeRec.h" |
15 | 16 |
16 Sk2DPathEffect::Sk2DPathEffect(const SkMatrix& mat) : fMatrix(mat) { | 17 Sk2DPathEffect::Sk2DPathEffect(const SkMatrix& mat) : fMatrix(mat) { |
17 fMatrixIsInvertible = mat.invert(&fInverse); | 18 fMatrixIsInvertible = mat.invert(&fInverse); |
18 } | 19 } |
19 | 20 |
20 bool Sk2DPathEffect::filterPath(SkPath* dst, const SkPath& src, | 21 bool Sk2DPathEffect::filterPath(SkPath* dst, const SkPath& src, |
21 SkStrokeRec*, const SkRect*) const { | 22 SkStrokeRec*, const SkRect*) const { |
22 if (!fMatrixIsInvertible) { | 23 if (!fMatrixIsInvertible) { |
23 return false; | 24 return false; |
24 } | 25 } |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 } | 154 } |
154 | 155 |
155 #ifndef SK_IGNORE_TO_STRING | 156 #ifndef SK_IGNORE_TO_STRING |
156 void SkPath2DPathEffect::toString(SkString* str) const { | 157 void SkPath2DPathEffect::toString(SkString* str) const { |
157 str->appendf("SkPath2DPathEffect: ("); | 158 str->appendf("SkPath2DPathEffect: ("); |
158 this->INHERITED::toString(str); | 159 this->INHERITED::toString(str); |
159 // TODO: print out path information | 160 // TODO: print out path information |
160 str->appendf(")"); | 161 str->appendf(")"); |
161 } | 162 } |
162 #endif | 163 #endif |
OLD | NEW |