| Index: gm/clip_strokerect.cpp
|
| diff --git a/gm/clip_strokerect.cpp b/gm/clip_strokerect.cpp
|
| index 707229214a004c642c2f1a765db8c2669654689d..b3d7497ca1288783dc033d086289aaec384e519d 100644
|
| --- a/gm/clip_strokerect.cpp
|
| +++ b/gm/clip_strokerect.cpp
|
| @@ -36,7 +36,7 @@ protected:
|
| SkRect rect = SkRect::MakeXYWH(20, 0, 100, 20);
|
|
|
| canvas->save();
|
| - canvas->clipRect(rect, SkRegion::kReplace_Op, true);
|
| + canvas->legacyClipRect(rect, SkRegion::kReplace_Op, true);
|
| canvas->drawRect(r, p);
|
| canvas->restore();
|
|
|
| @@ -54,7 +54,7 @@ protected:
|
| SkRect rect2 = SkRect::MakeXYWH(20, 120, 100, 19);
|
|
|
| canvas->save();
|
| - canvas->clipRect(rect2, SkRegion::kReplace_Op, true);
|
| + canvas->legacyClipRect(rect2, SkRegion::kReplace_Op, true);
|
| canvas->drawRect(r2, p);
|
| canvas->restore();
|
|
|
|
|