| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2013 The Android Open Source Project | 2 * Copyright 2013 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 SkXfermodeImageFilter_DEFINED | 8 #ifndef SkXfermodeImageFilter_DEFINED |
| 9 #define SkXfermodeImageFilter_DEFINED | 9 #define SkXfermodeImageFilter_DEFINED |
| 10 | 10 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 SkImageFilter* foreground = NULL, const CropRect* crop
Rect = NULL); | 25 SkImageFilter* foreground = NULL, const CropRect* crop
Rect = NULL); |
| 26 | 26 |
| 27 virtual ~SkXfermodeImageFilter(); | 27 virtual ~SkXfermodeImageFilter(); |
| 28 | 28 |
| 29 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkXfermodeImageFilter) | 29 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkXfermodeImageFilter) |
| 30 | 30 |
| 31 virtual bool onFilterImage(Proxy* proxy, | 31 virtual bool onFilterImage(Proxy* proxy, |
| 32 const SkBitmap& src, | 32 const SkBitmap& src, |
| 33 const SkMatrix& ctm, | 33 const SkMatrix& ctm, |
| 34 SkBitmap* dst, | 34 SkBitmap* dst, |
| 35 SkIPoint* offset) SK_OVERRIDE; | 35 SkIPoint* offset) const SK_OVERRIDE; |
| 36 #if SK_SUPPORT_GPU | 36 #if SK_SUPPORT_GPU |
| 37 virtual bool canFilterImageGPU() const SK_OVERRIDE { return !cropRectIsSet()
; } | 37 virtual bool canFilterImageGPU() const SK_OVERRIDE { return !cropRectIsSet()
; } |
| 38 virtual bool filterImageGPU(Proxy* proxy, const SkBitmap& src, const SkMatri
x& ctm, | 38 virtual bool filterImageGPU(Proxy* proxy, const SkBitmap& src, const SkMatri
x& ctm, |
| 39 SkBitmap* result, SkIPoint* offset) SK_OVERRIDE; | 39 SkBitmap* result, SkIPoint* offset) const SK_OVE
RRIDE; |
| 40 #endif | 40 #endif |
| 41 | 41 |
| 42 protected: | 42 protected: |
| 43 explicit SkXfermodeImageFilter(SkReadBuffer& buffer); | 43 explicit SkXfermodeImageFilter(SkReadBuffer& buffer); |
| 44 virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE; | 44 virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE; |
| 45 | 45 |
| 46 private: | 46 private: |
| 47 SkXfermode* fMode; | 47 SkXfermode* fMode; |
| 48 typedef SkImageFilter INHERITED; | 48 typedef SkImageFilter INHERITED; |
| 49 }; | 49 }; |
| 50 | 50 |
| 51 #endif | 51 #endif |
| OLD | NEW |