| Index: include/effects/Sk2DPathEffect.h
|
| diff --git a/include/effects/Sk2DPathEffect.h b/include/effects/Sk2DPathEffect.h
|
| index fa12dcf0954bbc2925f63e05643bc472978dfa2c..73da83c4b960dd84facb5ca1c7073ba33e034177 100644
|
| --- a/include/effects/Sk2DPathEffect.h
|
| +++ b/include/effects/Sk2DPathEffect.h
|
| @@ -55,7 +55,7 @@
|
|
|
| class SK_API SkLine2DPathEffect : public Sk2DPathEffect {
|
| public:
|
| - static SkLine2DPathEffect* Create(SkScalar width, const SkMatrix& matrix) {
|
| + static SkPathEffect* Create(SkScalar width, const SkMatrix& matrix) {
|
| return new SkLine2DPathEffect(width, matrix);
|
| }
|
|
|
| @@ -84,7 +84,7 @@
|
| * Stamp the specified path to fill the shape, using the matrix to define
|
| * the latice.
|
| */
|
| - static SkPath2DPathEffect* Create(const SkMatrix& matrix, const SkPath& path) {
|
| + static SkPathEffect* Create(const SkMatrix& matrix, const SkPath& path) {
|
| return new SkPath2DPathEffect(matrix, path);
|
| }
|
|
|
|
|