| Index: gm/ninepatchstretch.cpp
|
| diff --git a/gm/ninepatchstretch.cpp b/gm/ninepatchstretch.cpp
|
| index a14af00a4e99b7ccf93c71b2ca5d7503ee8f5c99..74cc87f30597f1126bcec5117c346f6d67886d8b 100644
|
| --- a/gm/ninepatchstretch.cpp
|
| +++ b/gm/ninepatchstretch.cpp
|
| @@ -13,10 +13,7 @@ static void make_bitmap(SkBitmap* bitmap, SkIRect* center) {
|
| const int kSize = 2*kFixed + kStretchy;
|
|
|
| bitmap->allocN32Pixels(kSize, kSize);
|
| - SkBaseDevice* dev = new SkBitmapDevice(*bitmap);
|
| -
|
| - SkCanvas canvas(dev);
|
| - dev->unref();
|
| + SkCanvas canvas(*bitmap);
|
| canvas.clear(SK_ColorTRANSPARENT);
|
|
|
| SkRect r = SkRect::MakeWH(SkIntToScalar(kSize), SkIntToScalar(kSize));
|
|
|