| OLD | NEW |
| 1 | |
| 2 /* | 1 /* |
| 3 * Copyright 2006 The Android Open Source Project | 2 * Copyright 2006 The Android Open Source Project |
| 4 * | 3 * |
| 5 * 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 |
| 6 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 7 */ | 6 */ |
| 8 | 7 |
| 9 | |
| 10 #include "SkDrawExtraPathEffect.h" | 8 #include "SkDrawExtraPathEffect.h" |
| 11 #include "SkDrawPath.h" | 9 #include "SkDrawPath.h" |
| 12 #include "Sk1DPathEffect.h" | 10 #include "Sk1DPathEffect.h" |
| 13 #include "Sk2DPathEffect.h" | 11 #include "Sk2DPathEffect.h" |
| 14 #include "SkMemberInfo.h" | 12 #include "SkMemberInfo.h" |
| 15 #include "SkPaintParts.h" | 13 #include "SkPaintPart.h" |
| 16 #include "SkPathEffect.h" | 14 #include "SkPathEffect.h" |
| 17 #include "SkCornerPathEffect.h" | 15 #include "SkCornerPathEffect.h" |
| 18 | 16 |
| 19 #include "SkDashPathEffect.h" | 17 #include "SkDashPathEffect.h" |
| 20 | 18 |
| 21 class SkDrawShapePathEffect : public SkDrawPathEffect { | 19 class SkDrawShapePathEffect : public SkDrawPathEffect { |
| 22 DECLARE_PRIVATE_MEMBER_INFO(DrawShapePathEffect); | 20 DECLARE_PRIVATE_MEMBER_INFO(DrawShapePathEffect); |
| 23 SkDrawShapePathEffect(); | 21 SkDrawShapePathEffect(); |
| 24 virtual ~SkDrawShapePathEffect(); | 22 virtual ~SkDrawShapePathEffect(); |
| 25 virtual bool addChild(SkAnimateMaker& , SkDisplayable* ) SK_OVERRIDE; | 23 virtual bool addChild(SkAnimateMaker& , SkDisplayable* ) SK_OVERRIDE; |
| (...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 506 | 504 |
| 507 void InitializeSkExtraPathEffects(SkAnimator* animator) { | 505 void InitializeSkExtraPathEffects(SkAnimator* animator) { |
| 508 animator->addExtras(new SkExtraPathEffects()); | 506 animator->addExtras(new SkExtraPathEffects()); |
| 509 } | 507 } |
| 510 | 508 |
| 511 //////////////// | 509 //////////////// |
| 512 | 510 |
| 513 | 511 |
| 514 SkExtras::SkExtras() : fExtraCallBack(NULL), fExtraStorage(NULL) { | 512 SkExtras::SkExtras() : fExtraCallBack(NULL), fExtraStorage(NULL) { |
| 515 } | 513 } |
| OLD | NEW |