Index: src/core/SkRemote.h |
diff --git a/src/core/SkRemote.h b/src/core/SkRemote.h |
index 5fb20242fe7531f818ce9aaf9dcbd7962fae79f3..b33309449c78483b6f0ca17bad0b1ce96883c231 100644 |
--- a/src/core/SkRemote.h |
+++ b/src/core/SkRemote.h |
@@ -81,17 +81,18 @@ namespace SkRemote { |
virtual void undefine(ID) = 0; |
- virtual void save() = 0; |
- virtual void restore() = 0; |
- |
- virtual void setMatrix(ID matrix) = 0; |
- |
// TODO: do these all belong here in CommonIDs? |
struct CommonIDs { |
ID misc, patheffect, shader, xfermode, maskfilter, |
colorfilter, rasterizer, looper, imagefilter, annotation; |
}; |
+ virtual void save() = 0; |
+ virtual void restore() = 0; |
+ virtual void saveLayer(ID bounds, CommonIDs, SkCanvas::SaveFlags) = 0; |
+ |
+ virtual void setMatrix(ID matrix) = 0; |
+ |
virtual void clipPath(ID path, SkRegion::Op, bool aa) = 0; |
virtual void fillPath(ID path, CommonIDs) = 0; |
virtual void strokePath(ID path, CommonIDs, ID stroke) = 0; |