Chromium Code Reviews| Index: include/effects/SkDiscretePathEffect.h |
| diff --git a/include/effects/SkDiscretePathEffect.h b/include/effects/SkDiscretePathEffect.h |
| index 8373b6aa159ef4550380626dee3c56a46944c3b5..c5f7079abf7023829d81e49414e431fc38db3e65 100644 |
| --- a/include/effects/SkDiscretePathEffect.h |
| +++ b/include/effects/SkDiscretePathEffect.h |
| @@ -9,6 +9,7 @@ |
| #define SkDiscretePathEffect_DEFINED |
| #include "SkPathEffect.h" |
| +#include "SkRandom.h" |
|
scroggo
2014/06/05 16:09:30
No need for this include here, since the header do
rs.prinja
2014/06/07 10:46:05
Done.
|
| /** \class SkDiscretePathEffect |
| @@ -20,8 +21,8 @@ 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/05 16:09:30
Please use a line break so the line is not over 10
rs.prinja
2014/06/07 10:46:04
Done.
|
| + return SkNEW_ARGS(SkDiscretePathEffect, (segLength, deviation, seedAssist)); |
| } |
| virtual bool filterPath(SkPath* dst, const SkPath& src, |
| @@ -30,13 +31,19 @@ public: |
| SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkDiscretePathEffect) |
| protected: |
| - SkDiscretePathEffect(SkScalar segLength, SkScalar deviation); |
| + SkDiscretePathEffect(SkScalar segLength, SkScalar deviation, uint32_t seedAssist=1); |
|
scroggo
2014/06/05 16:09:30
In general, we only want a default parameter on th
rs.prinja
2014/06/07 10:46:05
Done.
|
| explicit SkDiscretePathEffect(SkReadBuffer&); |
| virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE; |
| private: |
| SkScalar fSegLength, fPerterb; |
| + /* Caller-supplied 32 bit seed assist */ |
| + uint32_t fSeedAssist; |
| + |
| + static uint32_t fObjectIdGenerator; |
|
scroggo
2014/06/05 16:09:30
This is not needed. As discussed in skbug.com/2581
rs.prinja
2014/06/07 10:46:04
Done.
|
| + uint32_t fObjectId; |
|
scroggo
2014/06/05 16:09:30
Please remove.
rs.prinja
2014/06/07 10:46:04
Done.
|
| + |
| typedef SkPathEffect INHERITED; |
| }; |