| Index: src/pipe/SkGPipeWrite.cpp
|
| diff --git a/src/pipe/SkGPipeWrite.cpp b/src/pipe/SkGPipeWrite.cpp
|
| index a3c38646bb55d3ae55ec453c007a5bbe19cdc763..6711eb06640b659faae22866172974ea3c732469 100644
|
| --- a/src/pipe/SkGPipeWrite.cpp
|
| +++ b/src/pipe/SkGPipeWrite.cpp
|
| @@ -266,7 +266,7 @@ public:
|
| bool shuttleBitmap(const SkBitmap&, int32_t slot);
|
|
|
| protected:
|
| - virtual void willSave(SaveFlags) SK_OVERRIDE;
|
| + virtual void willSave() SK_OVERRIDE;
|
| virtual SaveLayerStrategy willSaveLayer(const SkRect*, const SkPaint*, SaveFlags) SK_OVERRIDE;
|
| virtual void willRestore() SK_OVERRIDE;
|
|
|
| @@ -515,13 +515,13 @@ uint32_t SkGPipeCanvas::getTypefaceID(SkTypeface* face) {
|
| #define NOTIFY_SETUP(canvas) \
|
| AutoPipeNotify apn(canvas)
|
|
|
| -void SkGPipeCanvas::willSave(SaveFlags flags) {
|
| +void SkGPipeCanvas::willSave() {
|
| NOTIFY_SETUP(this);
|
| if (this->needOpBytes()) {
|
| - this->writeOp(kSave_DrawOp, 0, flags);
|
| + this->writeOp(kSave_DrawOp);
|
| }
|
|
|
| - this->INHERITED::willSave(flags);
|
| + this->INHERITED::willSave();
|
| }
|
|
|
| SkCanvas::SaveLayerStrategy SkGPipeCanvas::willSaveLayer(const SkRect* bounds, const SkPaint* paint,
|
|
|