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

Side by Side Diff: include/effects/SkDropShadowImageFilter.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/SkDisplacementMapEffect.h ('k') | include/effects/SkImageSource.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 #include "SkColor.h" 8 #include "SkColor.h"
9 #include "SkImageFilter.h" 9 #include "SkImageFilter.h"
10 #include "SkScalar.h" 10 #include "SkScalar.h"
(...skipping 15 matching lines...) Expand all
26 return new SkDropShadowImageFilter(dx, dy, sigmaX, sigmaY, color, shadow Mode, input, 26 return new SkDropShadowImageFilter(dx, dy, sigmaX, sigmaY, color, shadow Mode, input,
27 cropRect); 27 cropRect);
28 } 28 }
29 29
30 void computeFastBounds(const SkRect&, SkRect*) const override; 30 void computeFastBounds(const SkRect&, SkRect*) const override;
31 SK_TO_STRING_OVERRIDE() 31 SK_TO_STRING_OVERRIDE()
32 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkDropShadowImageFilter) 32 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkDropShadowImageFilter)
33 33
34 protected: 34 protected:
35 void flatten(SkWriteBuffer&) const override; 35 void flatten(SkWriteBuffer&) const override;
36 bool onFilterImage(Proxy*, const SkBitmap& source, const Context&, SkBitmap* result, 36 bool onFilterImageDeprecated(Proxy*, const SkBitmap& source, const Context&, SkBitmap* result,
37 SkIPoint* loc) const override; 37 SkIPoint* loc) const override;
38 void onFilterNodeBounds(const SkIRect& src, const SkMatrix&, 38 void onFilterNodeBounds(const SkIRect& src, const SkMatrix&,
39 SkIRect* dst, MapDirection) const override; 39 SkIRect* dst, MapDirection) const override;
40 40
41 private: 41 private:
42 SkDropShadowImageFilter(SkScalar dx, SkScalar dy, SkScalar sigmaX, SkScalar sigmaY, SkColor, 42 SkDropShadowImageFilter(SkScalar dx, SkScalar dy, SkScalar sigmaX, SkScalar sigmaY, SkColor,
43 ShadowMode shadowMode, SkImageFilter* input, const C ropRect* cropRect); 43 ShadowMode shadowMode, SkImageFilter* input, const C ropRect* cropRect);
44 44
45 SkScalar fDx, fDy, fSigmaX, fSigmaY; 45 SkScalar fDx, fDy, fSigmaX, fSigmaY;
46 SkColor fColor; 46 SkColor fColor;
47 ShadowMode fShadowMode; 47 ShadowMode fShadowMode;
48 48
49 typedef SkImageFilter INHERITED; 49 typedef SkImageFilter INHERITED;
50 }; 50 };
OLDNEW
« no previous file with comments | « include/effects/SkDisplacementMapEffect.h ('k') | include/effects/SkImageSource.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698