Chromium Code Reviews| Index: include/effects/SkDiscretePathEffect.h |
| diff --git a/include/effects/SkDiscretePathEffect.h b/include/effects/SkDiscretePathEffect.h |
| index 8373b6aa159ef4550380626dee3c56a46944c3b5..c048ca3cd99ee8f0293e107892e3e28c4ffb4e78 100644 |
| --- a/include/effects/SkDiscretePathEffect.h |
| +++ b/include/effects/SkDiscretePathEffect.h |
| @@ -20,8 +20,11 @@ public: |
| away from the original path by a maximum of deviation. |
| Note: works on filled or framed paths |
| */ |
| - static SkDiscretePathEffect* Create(SkScalar segLength, SkScalar deviation) { |
| - return SkNEW_ARGS(SkDiscretePathEffect, (segLength, deviation)); |
| + static SkDiscretePathEffect* Create(SkScalar segLength, |
| + SkScalar deviation, |
| + uint32_t seedAssist=1) { |
|
scroggo
2014/06/09 14:01:04
Please add a comment explaining what seedAssist do
rs.prinja
2014/06/11 04:15:16
Done.
|
| + return SkNEW_ARGS(SkDiscretePathEffect, |
| + (segLength, deviation, seedAssist)); |
| } |
| virtual bool filterPath(SkPath* dst, const SkPath& src, |
| @@ -30,13 +33,18 @@ public: |
| SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkDiscretePathEffect) |
| protected: |
| - SkDiscretePathEffect(SkScalar segLength, SkScalar deviation); |
| + SkDiscretePathEffect(SkScalar segLength, |
| + SkScalar deviation, |
| + uint32_t seedAssist); |
| explicit SkDiscretePathEffect(SkReadBuffer&); |
| virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE; |
| private: |
| SkScalar fSegLength, fPerterb; |
| + /* Caller-supplied 32 bit seed assist */ |
| + uint32_t fSeedAssist; |
| + |
| typedef SkPathEffect INHERITED; |
| }; |