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

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

Issue 1389063002: Revert of factories should return baseclass, allowing the impl to specialize (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 5 years, 2 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/effects/SkPictureImageFilter.h ('k') | include/effects/SkRectShaderImageFilter.h » ('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 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 SkXfermode* Create(SkColor opColor) { return new SkPixelXorXfermode(o pColor); } 20 static SkPixelXorXfermode* Create(SkColor opColor) { return new SkPixelXorXf ermode(opColor); }
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) {}
26 void flatten(SkWriteBuffer&) const override; 27 void flatten(SkWriteBuffer&) const override;
28
29 // override from SkXfermode
27 SkPMColor xferColor(SkPMColor src, SkPMColor dst) const override; 30 SkPMColor xferColor(SkPMColor src, SkPMColor dst) const override;
28 31
29 private: 32 private:
30 explicit SkPixelXorXfermode(SkColor opColor) : fOpColor(opColor) {}
31
32 SkColor fOpColor; 33 SkColor fOpColor;
33 34
34 typedef SkXfermode INHERITED; 35 typedef SkXfermode INHERITED;
35 }; 36 };
36 37
37 #endif 38 #endif
OLDNEW
« no previous file with comments | « include/effects/SkPictureImageFilter.h ('k') | include/effects/SkRectShaderImageFilter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698