diff options
author | senorblanco <senorblanco@chromium.org> | 2015-03-18 12:11:33 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-03-18 12:11:33 -0700 |
commit | 24e06d5244ae96e440410e1d76e039983b2efac9 (patch) | |
tree | a836fa9291bdcfd543cc25edc964527b77b91dba /samplecode | |
parent | 6fbfdb1e5ebe42bf16d929082b43186c8183b063 (diff) |
Remove uniqueID from all filter serialization.
(This is essentially a revert of https://codereview.chromium.org/503833002/.)
This was necessary back when SkPaint was flattened even for in-process use. Now that we only flatten SkPaint for cross-process use, there's no need to serialize UniqueIDs.
Note: SkDropShadowImageFilter is being constructed with a croprect and UniqueID (of 0) in Blink. I've made the uniqueID param default to 0 temporarily, until this rolls in and Blink can be changed. (Blink can't be changed first, since unlike the other filters, there's no constructor that takes a cropRect but not a uniqueID.)
BUG=skia:
Review URL: https://codereview.chromium.org/1019493002
Diffstat (limited to 'samplecode')
-rw-r--r-- | samplecode/SampleFilterFuzz.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/samplecode/SampleFilterFuzz.cpp b/samplecode/SampleFilterFuzz.cpp index b2c15aa7c4..77ae0d898f 100644 --- a/samplecode/SampleFilterFuzz.cpp +++ b/samplecode/SampleFilterFuzz.cpp @@ -380,7 +380,7 @@ static SkImageFilter* make_image_filter(bool canBeNull = true) { case DROP_SHADOW: filter = SkDropShadowImageFilter::Create(make_scalar(), make_scalar(), make_scalar(true), make_scalar(true), make_color(), make_shadow_mode(), make_image_filter(), - NULL, 0); + NULL); break; case MORPHOLOGY: if (R(2) == 1) { |