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

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

Issue 1709753002: Mark existing image filter entry points that will be going away with Deprecated (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Update to ToT Created 4 years, 10 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/SkDropShadowImageFilter.h ('k') | include/effects/SkMagnifierImageFilter.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 2015 Google Inc. 2 * Copyright 2015 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 SkImageSource_DEFINED 8 #ifndef SkImageSource_DEFINED
9 #define SkImageSource_DEFINED 9 #define SkImageSource_DEFINED
10 10
(...skipping 10 matching lines...) Expand all
21 SkFilterQuality); 21 SkFilterQuality);
22 22
23 void computeFastBounds(const SkRect& src, SkRect* dst) const override; 23 void computeFastBounds(const SkRect& src, SkRect* dst) const override;
24 24
25 SK_TO_STRING_OVERRIDE() 25 SK_TO_STRING_OVERRIDE()
26 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkImageSource) 26 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkImageSource)
27 27
28 protected: 28 protected:
29 void flatten(SkWriteBuffer&) const override; 29 void flatten(SkWriteBuffer&) const override;
30 30
31 bool onFilterImage(Proxy*, const SkBitmap& src, const Context&, 31 bool onFilterImageDeprecated(Proxy*, const SkBitmap& src, const Context&,
32 SkBitmap* result, SkIPoint* offset) const override; 32 SkBitmap* result, SkIPoint* offset) const overr ide;
33 33
34 private: 34 private:
35 explicit SkImageSource(const SkImage*); 35 explicit SkImageSource(const SkImage*);
36 SkImageSource(const SkImage*, 36 SkImageSource(const SkImage*,
37 const SkRect& srcRect, 37 const SkRect& srcRect,
38 const SkRect& dstRect, 38 const SkRect& dstRect,
39 SkFilterQuality); 39 SkFilterQuality);
40 40
41 SkAutoTUnref<const SkImage> fImage; 41 SkAutoTUnref<const SkImage> fImage;
42 SkRect fSrcRect, fDstRect; 42 SkRect fSrcRect, fDstRect;
43 SkFilterQuality fFilterQuality; 43 SkFilterQuality fFilterQuality;
44 44
45 typedef SkImageFilter INHERITED; 45 typedef SkImageFilter INHERITED;
46 }; 46 };
47 47
48 #endif 48 #endif
OLDNEW
« no previous file with comments | « include/effects/SkDropShadowImageFilter.h ('k') | include/effects/SkMagnifierImageFilter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698