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

Side by Side Diff: include/effects/SkComposeImageFilter.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/SkColorMatrixFilter.h ('k') | include/effects/SkCornerPathEffect.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 2013 Google Inc. 2 * Copyright 2013 Google Inc.
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 SkComposeImageFilter_DEFINED 8 #ifndef SkComposeImageFilter_DEFINED
9 #define SkComposeImageFilter_DEFINED 9 #define SkComposeImageFilter_DEFINED
10 10
(...skipping 14 matching lines...) Expand all
25 return SkNEW_ARGS(SkComposeImageFilter, (inputs)); 25 return SkNEW_ARGS(SkComposeImageFilter, (inputs));
26 } 26 }
27 27
28 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkComposeImageFilter) 28 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkComposeImageFilter)
29 29
30 protected: 30 protected:
31 explicit SkComposeImageFilter(SkImageFilter* inputs[2]) : INHERITED(2, input s) { 31 explicit SkComposeImageFilter(SkImageFilter* inputs[2]) : INHERITED(2, input s) {
32 SkASSERT(inputs[0]); 32 SkASSERT(inputs[0]);
33 SkASSERT(inputs[1]); 33 SkASSERT(inputs[1]);
34 } 34 }
35 #ifdef SK_SUPPORT_LEGACY_DEEPFLATTENING
36 explicit SkComposeImageFilter(SkReadBuffer& buffer);
37 #endif
38
35 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&, 39 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&,
36 SkBitmap* result, SkIPoint* loc) const SK_OVERRID E; 40 SkBitmap* result, SkIPoint* loc) const SK_OVERRID E;
37 virtual bool onFilterBounds(const SkIRect&, const SkMatrix&, SkIRect*) const SK_OVERRIDE; 41 virtual bool onFilterBounds(const SkIRect&, const SkMatrix&, SkIRect*) const SK_OVERRIDE;
38 42
39 private: 43 private:
40 typedef SkImageFilter INHERITED; 44 typedef SkImageFilter INHERITED;
41 }; 45 };
42 46
43 #endif 47 #endif
OLDNEW
« no previous file with comments | « include/effects/SkColorMatrixFilter.h ('k') | include/effects/SkCornerPathEffect.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698