Index: include/core/SkCanvas.h |
diff --git a/include/core/SkCanvas.h b/include/core/SkCanvas.h |
index d28336f7150403b1c3c280ec446c7848ed509d5a..c4ec76aee4f3d9550786f03dba79c545458a7a2c 100644 |
--- a/include/core/SkCanvas.h |
+++ b/include/core/SkCanvas.h |
@@ -1265,7 +1265,6 @@ |
const SkSurfaceProps fProps; |
- int fSaveCount; // value returned by getSaveCount() |
int fSaveLayerCount; // number of successful saveLayer calls |
int fCullCount; // number of active culls |
@@ -1281,9 +1280,6 @@ |
bool fDeviceCMDirty; // cleared by updateDeviceCMCache() |
void updateDeviceCMCache(); |
- |
- void doSave(); |
- void checkForDeferredSave(); |
friend class SkDrawIter; // needs setupDrawForLayerDevice() |
friend class AutoDrawLooper; |
@@ -1338,12 +1334,12 @@ |
void internalDrawBitmapNine(const SkBitmap& bitmap, const SkIRect& center, |
const SkRect& dst, const SkPaint* paint); |
void internalDrawPaint(const SkPaint& paint); |
- void internalSaveLayer(const SkRect* bounds, const SkPaint* paint, |
- SaveFlags, bool justForImageFilter, SaveLayerStrategy strategy); |
+ int internalSaveLayer(const SkRect* bounds, const SkPaint* paint, |
+ SaveFlags, bool justForImageFilter, SaveLayerStrategy strategy); |
void internalDrawDevice(SkBaseDevice*, int x, int y, const SkPaint*); |
// shared by save() and saveLayer() |
- void internalSave(); |
+ int internalSave(); |
void internalRestore(); |
static void DrawRect(const SkDraw& draw, const SkPaint& paint, |
const SkRect& r, SkScalar textSize); |