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

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

Issue 1826893002: Switch new SkImageFilter internal methods over to sk_sp (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Change method name to drawSpriteWithFilter Created 4 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/SkColorFilterImageFilter.h ('k') | include/effects/SkDropShadowImageFilter.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 SkRect computeFastBounds(const SkRect& src) const override; 25 SkRect computeFastBounds(const SkRect& src) const override;
26 26
27 SK_TO_STRING_OVERRIDE() 27 SK_TO_STRING_OVERRIDE()
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 SkSpecialImage* onFilterImage(SkSpecialImage* source, const Context&, 35 sk_sp<SkSpecialImage> onFilterImage(SkSpecialImage* source, const Context&,
36 SkIPoint* offset) const override; 36 SkIPoint* offset) const override;
37 SkIRect onFilterBounds(const SkIRect&, const SkMatrix&, MapDirection) const override; 37 SkIRect onFilterBounds(const SkIRect&, const SkMatrix&, MapDirection) const override;
38 38
39 private: 39 private:
40 typedef SkImageFilter INHERITED; 40 typedef SkImageFilter INHERITED;
41 }; 41 };
42 42
43 #endif 43 #endif
OLDNEW
« no previous file with comments | « include/effects/SkColorFilterImageFilter.h ('k') | include/effects/SkDropShadowImageFilter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698