Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(228)

Side by Side Diff: include/effects/SkXfermodeImageFilter.h

Issue 1674673002: Alter SkXfermode's asFragmentProcessor & asXPFactory contracts (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Fix unit test bug Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « include/core/SkXfermode.h ('k') | src/core/SkXfermode.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
11 #include "SkImageFilter.h" 11 #include "SkImageFilter.h"
12 12
13 class SkBitmap; 13 class SkBitmap;
14 class SkXfermode; 14 class SkXfermode;
15 15
16 class SK_API SkXfermodeImageFilter : public SkImageFilter { 16 class SK_API SkXfermodeImageFilter : public SkImageFilter {
17 /** 17 /**
18 * This filter takes an xfermode, and uses it to composite the foreground 18 * This filter takes an xfermode, and uses it to composite the foreground
19 * over the background. If foreground or background is NULL, the input 19 * over the background. If foreground or background is NULL, the input
20 * bitmap (src) is used instead. 20 * bitmap (src) is used instead.
21 */ 21 */
22 22
23 public: 23 public:
24 virtual ~SkXfermodeImageFilter();
25
26 static SkImageFilter* Create(SkXfermode* mode, SkImageFilter* background, 24 static SkImageFilter* Create(SkXfermode* mode, SkImageFilter* background,
27 SkImageFilter* foreground = NULL, 25 SkImageFilter* foreground = NULL,
28 const CropRect* cropRect = NULL) { 26 const CropRect* cropRect = NULL) {
29 SkImageFilter* inputs[2] = { background, foreground }; 27 SkImageFilter* inputs[2] = { background, foreground };
30 return new SkXfermodeImageFilter(mode, inputs, cropRect); 28 return new SkXfermodeImageFilter(mode, inputs, cropRect);
31 } 29 }
32 30
33 SK_TO_STRING_OVERRIDE() 31 SK_TO_STRING_OVERRIDE()
34 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkXfermodeImageFilter) 32 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkXfermodeImageFilter)
35 33
36 bool onFilterImage(Proxy* proxy, 34 bool onFilterImage(Proxy* proxy,
37 const SkBitmap& src, 35 const SkBitmap& src,
38 const Context& ctx, 36 const Context& ctx,
39 SkBitmap* dst, 37 SkBitmap* dst,
40 SkIPoint* offset) const override; 38 SkIPoint* offset) const override;
41 #if SK_SUPPORT_GPU 39 #if SK_SUPPORT_GPU
42 bool canFilterImageGPU() const override; 40 bool canFilterImageGPU() const override;
43 bool filterImageGPU(Proxy* proxy, const SkBitmap& src, const Context& ctx, 41 bool filterImageGPU(Proxy* proxy, const SkBitmap& src, const Context& ctx,
44 SkBitmap* result, SkIPoint* offset) const override; 42 SkBitmap* result, SkIPoint* offset) const override;
45 #endif 43 #endif
46 44
47 protected: 45 protected:
48 SkXfermodeImageFilter(SkXfermode* mode, SkImageFilter* inputs[2], 46 SkXfermodeImageFilter(SkXfermode* mode, SkImageFilter* inputs[2],
49 const CropRect* cropRect); 47 const CropRect* cropRect);
50 void flatten(SkWriteBuffer&) const override; 48 void flatten(SkWriteBuffer&) const override;
51 49
52 private: 50 private:
53 SkXfermode* fMode; 51 SkAutoTUnref<SkXfermode> fMode;
54 typedef SkImageFilter INHERITED; 52 typedef SkImageFilter INHERITED;
55 }; 53 };
56 54
57 #endif 55 #endif
OLDNEW
« no previous file with comments | « include/core/SkXfermode.h ('k') | src/core/SkXfermode.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698