aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar robertphillips <robertphillips@google.com>2015-04-10 08:39:58 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-04-10 08:39:58 -0700
commit25c40d25d75c8ee5d9632608ba09eb2c5fb765d2 (patch)
treedd6557134c283d68543bd62b48a495997c260772 /include
parentf6e97e6f62c08042886dc50850c1d8c929418602 (diff)
Add serialization of SkBitmapSource's new filterQuality member variable
Missed this in https://codereview.chromium.org/1072603002/ (Add GM to repro crbug.com/472795) Review URL: https://codereview.chromium.org/1078113002
Diffstat (limited to 'include')
-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 2dc92580dd..f514828e56 100644
--- a/include/core/SkPicture.h
+++ b/include/core/SkPicture.h
@@ -244,13 +244,14 @@ private:
// V38: Added PictureResolution option to SkPictureImageFilter
// V39: Added FilterLevel option to SkPictureImageFilter
// V40: Remove UniqueID serialization from SkImageFilter.
+ // V41: Added serialization of SkBitmapSource's filterQuality parameter
// 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 = 35; // Produced by Chrome M39.
- static const uint32_t CURRENT_PICTURE_VERSION = 40;
+ static const uint32_t CURRENT_PICTURE_VERSION = 41;
void createHeader(SkPictInfo* info) const;
static bool IsValidPictInfo(const SkPictInfo& info);