aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkPicture.h
diff options
context:
space:
mode:
authorGravatar Florin Malita <fmalita@chromium.org>2014-06-30 10:13:28 -0400
committerGravatar Florin Malita <fmalita@chromium.org>2014-06-30 10:13:28 -0400
commit5f6102d07982043542343ff0a6c67b1319ac9fc7 (patch)
tree934909d391ec4f68bcb9c27a327f540c292ca8b3 /include/core/SkPicture.h
parentfdecca84400688c5a683da32ec11f6282e9a6b14 (diff)
SaveFlags be-gone
Remove the deprecated save(SaveFlags), willSave(SaveFlags) and all traces of kMatrix_SaveFlags/kClip_SaveFlag. BUG=skia:2297 R=mtklein@google.com, reed@google.com, robertphillips@google.com Review URL: https://codereview.chromium.org/340403003
Diffstat (limited to 'include/core/SkPicture.h')
-rw-r--r--include/core/SkPicture.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/core/SkPicture.h b/include/core/SkPicture.h
index 1f1378c415..b4644fc2c8 100644
--- a/include/core/SkPicture.h
+++ b/include/core/SkPicture.h
@@ -238,13 +238,14 @@ protected:
// V26: Removed boolean from SkColorShader for inheriting color from SkPaint.
// V27: Remove SkUnitMapper from gradients (and skia).
// V28: No longer call bitmap::flatten inside SkWriteBuffer::writeBitmap.
+ // V29: Removed SaveFlags parameter from save().
// Note: If the picture version needs to be increased then please follow the
// steps to generate new SKPs in (only accessible to Googlers): http://goo.gl/qATVcw
// Only SKPs within the min/current picture version range (inclusive) can be read.
static const uint32_t MIN_PICTURE_VERSION = 19;
- static const uint32_t CURRENT_PICTURE_VERSION = 28;
+ static const uint32_t CURRENT_PICTURE_VERSION = 29;
mutable uint32_t fUniqueID;