Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(230)

Side by Side Diff: include/effects/SkOffsetImageFilter.h

Issue 1019493002: Remove uniqueID from all filter serialization. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Null out fUniqueID deserialization Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « include/effects/SkMorphologyImageFilter.h ('k') | include/effects/SkPictureImageFilter.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2012 The Android Open Source Project 2 * Copyright 2012 The Android Open Source Project
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #ifndef SkOffsetImageFilter_DEFINED 8 #ifndef SkOffsetImageFilter_DEFINED
9 #define SkOffsetImageFilter_DEFINED 9 #define SkOffsetImageFilter_DEFINED
10 10
11 #include "SkImageFilter.h" 11 #include "SkImageFilter.h"
12 #include "SkPoint.h" 12 #include "SkPoint.h"
13 13
14 class SK_API SkOffsetImageFilter : public SkImageFilter { 14 class SK_API SkOffsetImageFilter : public SkImageFilter {
15 typedef SkImageFilter INHERITED; 15 typedef SkImageFilter INHERITED;
16 16
17 public: 17 public:
18 static SkOffsetImageFilter* Create(SkScalar dx, SkScalar dy, SkImageFilter* input = NULL, 18 static SkOffsetImageFilter* Create(SkScalar dx, SkScalar dy, SkImageFilter* input = NULL,
19 const CropRect* cropRect = NULL, 19 const CropRect* cropRect = NULL) {
20 uint32_t uniqueID = 0) {
21 if (!SkScalarIsFinite(dx) || !SkScalarIsFinite(dy)) { 20 if (!SkScalarIsFinite(dx) || !SkScalarIsFinite(dy)) {
22 return NULL; 21 return NULL;
23 } 22 }
24 return SkNEW_ARGS(SkOffsetImageFilter, (dx, dy, input, cropRect, uniqueI D)); 23 return SkNEW_ARGS(SkOffsetImageFilter, (dx, dy, input, cropRect));
25 } 24 }
26 void computeFastBounds(const SkRect& src, SkRect* dst) const SK_OVERRIDE; 25 void computeFastBounds(const SkRect& src, SkRect* dst) const SK_OVERRIDE;
27 SK_TO_STRING_OVERRIDE() 26 SK_TO_STRING_OVERRIDE()
28 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkOffsetImageFilter) 27 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkOffsetImageFilter)
29 28
30 protected: 29 protected:
31 SkOffsetImageFilter(SkScalar dx, SkScalar dy, SkImageFilter* input, const Cr opRect* cropRect, uint32_t uniqueID); 30 SkOffsetImageFilter(SkScalar dx, SkScalar dy, SkImageFilter* input, const Cr opRect* cropRect);
32 void flatten(SkWriteBuffer&) const SK_OVERRIDE; 31 void flatten(SkWriteBuffer&) const SK_OVERRIDE;
33 32
34 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&, 33 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&,
35 SkBitmap* result, SkIPoint* loc) const SK_OVERRID E; 34 SkBitmap* result, SkIPoint* loc) const SK_OVERRID E;
36 bool onFilterBounds(const SkIRect&, const SkMatrix&, SkIRect*) const SK_OVER RIDE; 35 bool onFilterBounds(const SkIRect&, const SkMatrix&, SkIRect*) const SK_OVER RIDE;
37 36
38 private: 37 private:
39 SkVector fOffset; 38 SkVector fOffset;
40 }; 39 };
41 40
42 #endif 41 #endif
OLDNEW
« no previous file with comments | « include/effects/SkMorphologyImageFilter.h ('k') | include/effects/SkPictureImageFilter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698