| Index: samplecode/SamplePath.cpp
|
| diff --git a/samplecode/SamplePath.cpp b/samplecode/SamplePath.cpp
|
| index 9ef1c851d8d17bf4cbdc2260d2938c566889ea5c..c977ca0dc2a0656a7e25eb5aeebe492c4f72192d 100644
|
| --- a/samplecode/SamplePath.cpp
|
| +++ b/samplecode/SamplePath.cpp
|
| @@ -254,13 +254,13 @@
|
| fArcToPaint.setStyle(SkPaint::kStroke_Style);
|
| fArcToPaint.setStrokeWidth(9);
|
| fArcToPaint.setColor(0x800000FF);
|
| - fArcToPaint.setPathEffect(SkArcToPathEffect::Make(rad));
|
| + fArcToPaint.setPathEffect(SkArcToPathEffect::Create(rad))->unref();
|
|
|
| fCornerPaint.setAntiAlias(true);
|
| fCornerPaint.setStyle(SkPaint::kStroke_Style);
|
| fCornerPaint.setStrokeWidth(13);
|
| fCornerPaint.setColor(SK_ColorGREEN);
|
| - fCornerPaint.setPathEffect(SkCornerPathEffect::Make(rad*2));
|
| + fCornerPaint.setPathEffect(SkCornerPathEffect::Create(rad*2))->unref();
|
|
|
| fSkeletonPaint.setAntiAlias(true);
|
| fSkeletonPaint.setStyle(SkPaint::kStroke_Style);
|
|
|