| Index: gm/simpleaaclip.cpp
|
| diff --git a/gm/simpleaaclip.cpp b/gm/simpleaaclip.cpp
|
| index 87dc6877ef5a9cfe4269f97507f6f712842a51e6..9a8fe61eaa0c1e8756b6caaef20045f7df7efbfa 100644
|
| --- a/gm/simpleaaclip.cpp
|
| +++ b/gm/simpleaaclip.cpp
|
| @@ -106,11 +106,11 @@ protected:
|
| // create the clip mask with the supplied boolean op
|
| if (kPath_GeomType == fGeomType) {
|
| // path-based case
|
| - canvas->clipPath(fBasePath, SkCanvas::kReplace_Op, true);
|
| + canvas->clipPath(fBasePath, true);
|
| canvas->clipPath(fRectPath, op, true);
|
| } else {
|
| // rect-based case
|
| - canvas->clipRect(fBase, SkCanvas::kReplace_Op, true);
|
| + canvas->clipRect(fBase, true);
|
| canvas->clipRect(fRect, op, true);
|
| }
|
|
|
|
|