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

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

Issue 768183002: Revert of Remove SK_SUPPORT_LEGACY_DEEPFLATTENING. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years 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/SkPerlinNoiseShader.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
(...skipping 10 matching lines...) Expand all
21 if (!SkScalarIsFinite(dx) || !SkScalarIsFinite(dy)) { 21 if (!SkScalarIsFinite(dx) || !SkScalarIsFinite(dy)) {
22 return NULL; 22 return NULL;
23 } 23 }
24 return SkNEW_ARGS(SkOffsetImageFilter, (dx, dy, input, cropRect, uniqueI D)); 24 return SkNEW_ARGS(SkOffsetImageFilter, (dx, dy, input, cropRect, uniqueI D));
25 } 25 }
26 virtual void computeFastBounds(const SkRect& src, SkRect* dst) const SK_OVER RIDE; 26 virtual void computeFastBounds(const SkRect& src, SkRect* dst) const SK_OVER RIDE;
27 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkOffsetImageFilter) 27 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkOffsetImageFilter)
28 28
29 protected: 29 protected:
30 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, uint32_t uniqueID);
31 #ifdef SK_SUPPORT_LEGACY_DEEPFLATTENING
32 explicit SkOffsetImageFilter(SkReadBuffer& buffer);
33 #endif
31 virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE; 34 virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE;
32 35
33 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&, 36 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&,
34 SkBitmap* result, SkIPoint* loc) const SK_OVERRID E; 37 SkBitmap* result, SkIPoint* loc) const SK_OVERRID E;
35 virtual bool onFilterBounds(const SkIRect&, const SkMatrix&, SkIRect*) const SK_OVERRIDE; 38 virtual bool onFilterBounds(const SkIRect&, const SkMatrix&, SkIRect*) const SK_OVERRIDE;
36 39
37 private: 40 private:
38 SkVector fOffset; 41 SkVector fOffset;
39 }; 42 };
40 43
41 #endif 44 #endif
OLDNEW
« no previous file with comments | « include/effects/SkMorphologyImageFilter.h ('k') | include/effects/SkPerlinNoiseShader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698