OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2011 The Android Open Source Project | 2 * Copyright 2011 The Android Open Source Project |
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 SkBlurImageFilter_DEFINED | 8 #ifndef SkBlurImageFilter_DEFINED |
9 #define SkBlurImageFilter_DEFINED | 9 #define SkBlurImageFilter_DEFINED |
10 | 10 |
(...skipping 10 matching lines...) Expand all Loading... |
21 return new SkBlurImageFilter(sigmaX, sigmaY, input, cropRect); | 21 return new SkBlurImageFilter(sigmaX, sigmaY, input, cropRect); |
22 } | 22 } |
23 | 23 |
24 SkRect computeFastBounds(const SkRect&) const override; | 24 SkRect computeFastBounds(const SkRect&) const override; |
25 | 25 |
26 SK_TO_STRING_OVERRIDE() | 26 SK_TO_STRING_OVERRIDE() |
27 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkBlurImageFilter) | 27 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkBlurImageFilter) |
28 | 28 |
29 protected: | 29 protected: |
30 void flatten(SkWriteBuffer&) const override; | 30 void flatten(SkWriteBuffer&) const override; |
31 bool onFilterImageDeprecated(Proxy*, const SkBitmap& src, const Context&, Sk
Bitmap* result, | 31 SkSpecialImage* onFilterImage(SkSpecialImage* source, const Context&, |
32 SkIPoint* offset) const override; | 32 SkIPoint* offset) const override; |
33 SkIRect onFilterNodeBounds(const SkIRect& src, const SkMatrix&, MapDirection
) const override; | 33 SkIRect onFilterNodeBounds(const SkIRect& src, const SkMatrix&, MapDirection
) const override; |
34 bool canFilterImageGPU() const override { return true; } | |
35 bool filterImageGPUDeprecated(Proxy* proxy, const SkBitmap& src, const Conte
xt& ctx, | |
36 SkBitmap* result, SkIPoint* offset) const over
ride; | |
37 | 34 |
38 private: | 35 private: |
39 SkBlurImageFilter(SkScalar sigmaX, | 36 SkBlurImageFilter(SkScalar sigmaX, |
40 SkScalar sigmaY, | 37 SkScalar sigmaY, |
41 SkImageFilter* input, | 38 SkImageFilter* input, |
42 const CropRect* cropRect); | 39 const CropRect* cropRect); |
43 | 40 |
44 SkSize fSigma; | 41 SkSize fSigma; |
45 typedef SkImageFilter INHERITED; | 42 typedef SkImageFilter INHERITED; |
46 }; | 43 }; |
47 | 44 |
48 #endif | 45 #endif |
OLD | NEW |