OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2007 The Android Open Source Project | 2 * Copyright 2007 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 SkPixelXorXfermode_DEFINED | 8 #ifndef SkPixelXorXfermode_DEFINED |
9 #define SkPixelXorXfermode_DEFINED | 9 #define SkPixelXorXfermode_DEFINED |
10 | 10 |
11 #include "SkXfermode.h" | 11 #include "SkXfermode.h" |
12 | 12 |
13 /** SkPixelXorXfermode implements a simple pixel xor (op ^ src ^ dst). | 13 /** SkPixelXorXfermode implements a simple pixel xor (op ^ src ^ dst). |
14 This transformation does not follow premultiplied conventions, therefore | 14 This transformation does not follow premultiplied conventions, therefore |
15 this proc *always* returns an opaque color (alpha == 255). Thus it is | 15 this proc *always* returns an opaque color (alpha == 255). Thus it is |
16 not really usefull for operating on blended colors. | 16 not really usefull for operating on blended colors. |
17 */ | 17 */ |
18 class SK_API SkPixelXorXfermode : public SkXfermode { | 18 class SK_API SkPixelXorXfermode : public SkXfermode { |
19 public: | 19 public: |
20 static SkPixelXorXfermode* Create(SkColor opColor) { return new SkPixelXorXf
ermode(opColor); } | 20 static SkXfermode* Create(SkColor opColor) { return new SkPixelXorXfermode(o
pColor); } |
21 | 21 |
22 SK_TO_STRING_OVERRIDE() | 22 SK_TO_STRING_OVERRIDE() |
23 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkPixelXorXfermode) | 23 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkPixelXorXfermode) |
24 | 24 |
25 protected: | 25 protected: |
26 explicit SkPixelXorXfermode(SkColor opColor) : fOpColor(opColor) {} | |
27 void flatten(SkWriteBuffer&) const override; | 26 void flatten(SkWriteBuffer&) const override; |
28 | |
29 // override from SkXfermode | |
30 SkPMColor xferColor(SkPMColor src, SkPMColor dst) const override; | 27 SkPMColor xferColor(SkPMColor src, SkPMColor dst) const override; |
31 | 28 |
32 private: | 29 private: |
| 30 explicit SkPixelXorXfermode(SkColor opColor) : fOpColor(opColor) {} |
| 31 |
33 SkColor fOpColor; | 32 SkColor fOpColor; |
34 | 33 |
35 typedef SkXfermode INHERITED; | 34 typedef SkXfermode INHERITED; |
36 }; | 35 }; |
37 | 36 |
38 #endif | 37 #endif |
OLD | NEW |