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

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

Issue 166583002: Factory methods for heap-allocated SkPathEffect and SkXfermode objects. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: guard constructors by SK_SUPPORT_LEGACY_PUBLICEFFECTCONSTRUCTORS if used by Chrome. Created 6 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
OLDNEW
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 SkPixelXorXfermode(SkColor opColor) : fOpColor(opColor) {} 20 static SkPixelXorXfermode* Create(SkColor opColor) {
21 return SkNEW_ARGS(SkPixelXorXfermode, (opColor));
22 }
21 23
22 SK_DEVELOPER_TO_STRING() 24 SK_DEVELOPER_TO_STRING()
23 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkPixelXorXfermode) 25 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkPixelXorXfermode)
24 26
25 protected: 27 protected:
28 SkPixelXorXfermode(SkColor opColor) : fOpColor(opColor) {}
26 SkPixelXorXfermode(SkReadBuffer& rb); 29 SkPixelXorXfermode(SkReadBuffer& rb);
27 virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE; 30 virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE;
28 31
29 // override from SkXfermode 32 // override from SkXfermode
30 virtual SkPMColor xferColor(SkPMColor src, SkPMColor dst) const; 33 virtual SkPMColor xferColor(SkPMColor src, SkPMColor dst) const;
31 34
32 private: 35 private:
33 SkColor fOpColor; 36 SkColor fOpColor;
34 37
35 typedef SkXfermode INHERITED; 38 typedef SkXfermode INHERITED;
36 }; 39 };
37 40
38 #endif 41 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698