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 |
11 #include "SkImageFilter.h" | 11 #include "SkImageFilter.h" |
12 #include "SkSize.h" | 12 #include "SkSize.h" |
13 | 13 |
14 class SK_API SkBlurImageFilter : public SkImageFilter { | 14 class SK_API SkBlurImageFilter : public SkImageFilter { |
15 public: | 15 public: |
16 SkBlurImageFilter(SkScalar sigmaX, | 16 static SkBlurImageFilter* Create(SkScalar sigmaX, |
17 SkScalar sigmaY, | 17 SkScalar sigmaY, |
18 SkImageFilter* input = NULL, | 18 SkImageFilter* input = NULL, |
19 const CropRect* cropRect = NULL); | 19 const CropRect* cropRect = NULL) { |
20 return SkNEW_ARGS(SkBlurImageFilter, (sigmaX, sigmaY, input, cropRect)); | |
21 } | |
reed1
2014/03/03 18:23:19
nit: LF after }
Dominik Grewe
2014/03/04 10:29:00
Done.
| |
20 virtual void computeFastBounds(const SkRect&, SkRect*) const SK_OVERRIDE; | 22 virtual void computeFastBounds(const SkRect&, SkRect*) const SK_OVERRIDE; |
21 | 23 |
22 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkBlurImageFilter) | 24 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkBlurImageFilter) |
23 | 25 |
24 protected: | 26 protected: |
25 explicit SkBlurImageFilter(SkReadBuffer& buffer); | 27 explicit SkBlurImageFilter(SkReadBuffer& buffer); |
26 virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE; | 28 virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE; |
27 | 29 |
28 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const SkMatrix&, | 30 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const SkMatrix&, |
29 SkBitmap* result, SkIPoint* offset) const SK_OVER RIDE; | 31 SkBitmap* result, SkIPoint* offset) const SK_OVER RIDE; |
30 virtual bool onFilterBounds(const SkIRect& src, const SkMatrix&, | 32 virtual bool onFilterBounds(const SkIRect& src, const SkMatrix&, |
31 SkIRect* dst) const SK_OVERRIDE; | 33 SkIRect* dst) const SK_OVERRIDE; |
32 | 34 |
33 bool canFilterImageGPU() const SK_OVERRIDE { return true; } | 35 bool canFilterImageGPU() const SK_OVERRIDE { return true; } |
34 virtual bool filterImageGPU(Proxy* proxy, const SkBitmap& src, const SkMatri x& ctm, | 36 virtual bool filterImageGPU(Proxy* proxy, const SkBitmap& src, const SkMatri x& ctm, |
35 SkBitmap* result, SkIPoint* offset) const SK_OVE RRIDE; | 37 SkBitmap* result, SkIPoint* offset) const SK_OVE RRIDE; |
36 | 38 |
39 #ifdef SK_SUPPORT_LEGACY_PUBLICEFFECTCONSTRUCTORS | |
40 public: | |
41 #endif | |
42 SkBlurImageFilter(SkScalar sigmaX, | |
43 SkScalar sigmaY, | |
44 SkImageFilter* input = NULL, | |
45 const CropRect* cropRect = NULL); | |
46 | |
37 private: | 47 private: |
38 SkSize fSigma; | 48 SkSize fSigma; |
39 typedef SkImageFilter INHERITED; | 49 typedef SkImageFilter INHERITED; |
40 }; | 50 }; |
41 | 51 |
42 #endif | 52 #endif |
OLD | NEW |