OLD | NEW |
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 #ifndef SkRectShaderImageFilter_DEFINED | 8 #ifndef SkRectShaderImageFilter_DEFINED |
9 #define SkRectShaderImageFilter_DEFINED | 9 #define SkRectShaderImageFilter_DEFINED |
10 | 10 |
(...skipping 17 matching lines...) Expand all Loading... |
28 SK_ATTR_DEPRECATED("use Create(SkShader*, const CropRect*)") | 28 SK_ATTR_DEPRECATED("use Create(SkShader*, const CropRect*)") |
29 static SkRectShaderImageFilter* Create(SkShader* s, const SkRect& rect); | 29 static SkRectShaderImageFilter* Create(SkShader* s, const SkRect& rect); |
30 | 30 |
31 static SkRectShaderImageFilter* Create(SkShader* s, const CropRect* rect = N
ULL, uint32_t uniqueID = 0); | 31 static SkRectShaderImageFilter* Create(SkShader* s, const CropRect* rect = N
ULL, uint32_t uniqueID = 0); |
32 virtual ~SkRectShaderImageFilter(); | 32 virtual ~SkRectShaderImageFilter(); |
33 | 33 |
34 SK_TO_STRING_OVERRIDE() | 34 SK_TO_STRING_OVERRIDE() |
35 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkRectShaderImageFilter) | 35 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkRectShaderImageFilter) |
36 | 36 |
37 protected: | 37 protected: |
38 virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE; | 38 void flatten(SkWriteBuffer&) const SK_OVERRIDE; |
39 | 39 |
40 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&, | 40 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&, |
41 SkBitmap* result, SkIPoint* loc) const SK_OVERRID
E; | 41 SkBitmap* result, SkIPoint* loc) const SK_OVERRID
E; |
42 | 42 |
43 private: | 43 private: |
44 SkRectShaderImageFilter(SkShader* s, const CropRect* rect, uint32_t uniqueID
= 0); | 44 SkRectShaderImageFilter(SkShader* s, const CropRect* rect, uint32_t uniqueID
= 0); |
45 SkShader* fShader; | 45 SkShader* fShader; |
46 | 46 |
47 typedef SkImageFilter INHERITED; | 47 typedef SkImageFilter INHERITED; |
48 }; | 48 }; |
49 | 49 |
50 #endif | 50 #endif |
OLD | NEW |