| 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 10 matching lines...) Expand all Loading... |
| 21 * the input primitive's pixels are not used for processing). | 21 * the input primitive's pixels are not used for processing). |
| 22 * @param s Shader to call for processing. Cannot be NULL. Will be | 22 * @param s Shader to call for processing. Cannot be NULL. Will be |
| 23 * ref'ed by the new image filter. | 23 * ref'ed by the new image filter. |
| 24 * @param rect Rectangle of output pixels in which to apply the shader. | 24 * @param rect Rectangle of output pixels in which to apply the shader. |
| 25 * If NULL or a given crop edge is not specified, the source | 25 * If NULL or a given crop edge is not specified, the source |
| 26 * primitive's bounds are used instead. | 26 * primitive's bounds are used instead. |
| 27 */ | 27 */ |
| 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); | 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_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkRectShaderImageFilter) | 34 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkRectShaderImageFilter) |
| 35 | 35 |
| 36 protected: | 36 protected: |
| 37 #ifdef SK_SUPPORT_LEGACY_DEEPFLATTENING | 37 #ifdef SK_SUPPORT_LEGACY_DEEPFLATTENING |
| 38 SkRectShaderImageFilter(SkReadBuffer& buffer); | 38 SkRectShaderImageFilter(SkReadBuffer& buffer); |
| 39 #endif | 39 #endif |
| 40 virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE; | 40 virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE; |
| 41 | 41 |
| 42 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&, | 42 virtual bool onFilterImage(Proxy*, const SkBitmap& src, const Context&, |
| 43 SkBitmap* result, SkIPoint* loc) const SK_OVERRID
E; | 43 SkBitmap* result, SkIPoint* loc) const SK_OVERRID
E; |
| 44 | 44 |
| 45 private: | 45 private: |
| 46 SkRectShaderImageFilter(SkShader* s, const CropRect* rect); | 46 SkRectShaderImageFilter(SkShader* s, const CropRect* rect, uint32_t uniqueID
= 0); |
| 47 SkShader* fShader; | 47 SkShader* fShader; |
| 48 | 48 |
| 49 typedef SkImageFilter INHERITED; | 49 typedef SkImageFilter INHERITED; |
| 50 }; | 50 }; |
| 51 | 51 |
| 52 #endif | 52 #endif |
| OLD | NEW |