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 15 matching lines...) Expand all Loading... |
26 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkBlurImageFilter) | 26 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkBlurImageFilter) |
27 | 27 |
28 protected: | 28 protected: |
29 SkBlurImageFilter(SkScalar sigmaX, | 29 SkBlurImageFilter(SkScalar sigmaX, |
30 SkScalar sigmaY, | 30 SkScalar sigmaY, |
31 SkImageFilter* input, | 31 SkImageFilter* input, |
32 const CropRect* cropRect, | 32 const CropRect* cropRect, |
33 uint32_t uniqueID); | 33 uint32_t uniqueID); |
34 void flatten(SkWriteBuffer&) const SK_OVERRIDE; | 34 void flatten(SkWriteBuffer&) const SK_OVERRIDE; |
35 | 35 |
36 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&, | 36 virtual bool onFilterImage(Proxy*, const SkImage* src, const Context&, |
37 SkBitmap* result, SkIPoint* offset) const SK_OVER
RIDE; | 37 SkAutoTUnref<const SkImage>& result, |
| 38 SkIPoint* offset) const SK_OVERRIDE; |
38 virtual bool onFilterBounds(const SkIRect& src, const SkMatrix&, | 39 virtual bool onFilterBounds(const SkIRect& src, const SkMatrix&, |
39 SkIRect* dst) const SK_OVERRIDE; | 40 SkIRect* dst) const SK_OVERRIDE; |
40 | 41 |
41 bool canFilterImageGPU() const SK_OVERRIDE { return true; } | 42 bool canFilterImageGPU() const SK_OVERRIDE { return true; } |
42 virtual bool filterImageGPU(Proxy* proxy, const SkBitmap& src, const Context
& ctx, | 43 virtual bool filterImageGPU(Proxy* proxy, const SkImage* src, const Context&
ctx, |
43 SkBitmap* result, SkIPoint* offset) const SK_OVE
RRIDE; | 44 SkAutoTUnref<const SkImage>& result, |
| 45 SkIPoint* offset) const SK_OVERRIDE; |
44 | 46 |
45 private: | 47 private: |
46 SkSize fSigma; | 48 SkSize fSigma; |
47 typedef SkImageFilter INHERITED; | 49 typedef SkImageFilter INHERITED; |
48 }; | 50 }; |
49 | 51 |
50 #endif | 52 #endif |
OLD | NEW |