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

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

Issue 1851583002: Switch SkDownSampleImageFilter over to new onFilterImage interface (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Nuclear option Created 4 years, 8 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 | « no previous file | src/effects/SkTestImageFilters.cpp » ('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 2011 Google Inc. 2 * Copyright 2011 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 _SkTestImageFilters_h 8 #ifndef _SkTestImageFilters_h
9 #define _SkTestImageFilters_h 9 #define _SkTestImageFilters_h
10 10
(...skipping 12 matching lines...) Expand all
23 return NULL; 23 return NULL;
24 } 24 }
25 return new SkDownSampleImageFilter(scale, input); 25 return new SkDownSampleImageFilter(scale, input);
26 } 26 }
27 27
28 SK_TO_STRING_OVERRIDE() 28 SK_TO_STRING_OVERRIDE()
29 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkDownSampleImageFilter) 29 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkDownSampleImageFilter)
30 30
31 protected: 31 protected:
32 void flatten(SkWriteBuffer&) const override; 32 void flatten(SkWriteBuffer&) const override;
33 bool onFilterImageDeprecated(Proxy*, const SkBitmap& src, const Context&, Sk Bitmap* result, 33
34 SkIPoint* loc) const override; 34 sk_sp<SkSpecialImage> onFilterImage(SkSpecialImage* source, const Context&,
35 SkIPoint* offset) const override;
35 36
36 private: 37 private:
37 SkDownSampleImageFilter(SkScalar scale, SkImageFilter* input) 38 SkDownSampleImageFilter(SkScalar scale, SkImageFilter* input)
38 : INHERITED(1, &input), fScale(scale) {} 39 : INHERITED(1, &input), fScale(scale) {}
39 40
40 SkScalar fScale; 41 SkScalar fScale;
41 42
42 typedef SkImageFilter INHERITED; 43 typedef SkImageFilter INHERITED;
43 }; 44 };
44 45
45 #endif 46 #endif
OLDNEW
« no previous file with comments | « no previous file | src/effects/SkTestImageFilters.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698