| Index: gm/path_stroke_with_zero_length.cpp
|
| diff --git a/gm/path_stroke_with_zero_length.cpp b/gm/path_stroke_with_zero_length.cpp
|
| index c69fe5c0c78d423ee0d6b11ac458834c701abd65..9c05541877f96e0df35d0c76245b6972f47b590a 100644
|
| --- a/gm/path_stroke_with_zero_length.cpp
|
| +++ b/gm/path_stroke_with_zero_length.cpp
|
| @@ -167,7 +167,7 @@ private:
|
| } else {
|
| fClipS.transform(clipM, &clip);
|
| }
|
| - canvas->clipPath(clip, SkRegion::kIntersect_Op, true);
|
| + canvas->clipPath(clip, SkCanvas::kIntersect_Op, true);
|
| canvas->scale(scale, scale);
|
| canvas->drawBitmap(offscreen, (bounds.fLeft - 17) / scale,
|
| (bounds.fTop - 20 + 420) / scale);
|
| @@ -180,7 +180,7 @@ private:
|
| clipM.postTranslate(bounds.fLeft - 17 - 275, bounds.fTop - 24.5f + 420);
|
| SkPath clip;
|
| fClipR.transform(clipM, &clip);
|
| - canvas->clipPath(clip, SkRegion::kIntersect_Op, true);
|
| + canvas->clipPath(clip, SkCanvas::kIntersect_Op, true);
|
| canvas->scale(10.f, 10.f);
|
| canvas->drawBitmap(offscreen, (bounds.fLeft - 17 - 275
|
| + (index >= 5 ? 5 : 0)) / scale, (bounds.fTop - 20 + 420) / scale);
|
|
|