| Index: src/effects/SkDiscretePathEffect.cpp
|
| diff --git a/src/effects/SkDiscretePathEffect.cpp b/src/effects/SkDiscretePathEffect.cpp
|
| index 5e68dc67efb2e81401ef3b07f79f99e083e715c0..5af6ab4ceb2962ca0a113f343afee9e8fedfb2dd 100644
|
| --- a/src/effects/SkDiscretePathEffect.cpp
|
| +++ b/src/effects/SkDiscretePathEffect.cpp
|
| @@ -47,7 +47,7 @@ public:
|
| LCGRandom(uint32_t seed) : fSeed(seed) {}
|
|
|
| /** Return the next pseudo random number expressed as a SkScalar
|
| - in the range (-SK_Scalar1..SK_Scalar1).
|
| + in the range [-SK_Scalar1..SK_Scalar1).
|
| */
|
| SkScalar nextSScalar1() { return SkFixedToScalar(this->nextSFixed1()); }
|
|
|
| @@ -61,7 +61,7 @@ private:
|
| int32_t nextS() { return (int32_t)this->nextU(); }
|
|
|
| /** Return the next pseudo random number expressed as a signed SkFixed
|
| - in the range (-SK_Fixed1..SK_Fixed1).
|
| + in the range [-SK_Fixed1..SK_Fixed1).
|
| */
|
| SkFixed nextSFixed1() { return this->nextS() >> 15; }
|
|
|
|
|