| Index: src/core/SkStroke.cpp
|
| diff --git a/src/core/SkStroke.cpp b/src/core/SkStroke.cpp
|
| index a9cc6cd60ad9ec5d684927ee9c5bbecce96a0842..c562c2e433fc62c99666aa6e69d3f28757bf2071 100644
|
| --- a/src/core/SkStroke.cpp
|
| +++ b/src/core/SkStroke.cpp
|
| @@ -380,7 +380,9 @@ SkPathStroker::SkPathStroker(const SkPath& src,
|
| // 3x for result == inner + outer + join (swag)
|
| // 1x for inner == 'wag' (worst contour length would be better guess)
|
| fOuter.incReserve(src.countPoints() * 3);
|
| + fOuter.setIsVolatile(true);
|
| fInner.incReserve(src.countPoints());
|
| + fInner.setIsVolatile(true);
|
| #if QUAD_STROKE_APPROXIMATION
|
| #ifdef SK_DEBUG
|
| if (!gDebugStrokerErrorSet) {
|
|
|