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

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

Issue 768183002: Revert of Remove SK_SUPPORT_LEGACY_DEEPFLATTENING. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 6 years 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 SkPixelXorXfermode* Create(SkColor opColor) { 20 static SkPixelXorXfermode* Create(SkColor opColor) {
21 return SkNEW_ARGS(SkPixelXorXfermode, (opColor)); 21 return SkNEW_ARGS(SkPixelXorXfermode, (opColor));
22 } 22 }
23 23
24 SK_TO_STRING_OVERRIDE() 24 SK_TO_STRING_OVERRIDE()
25 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkPixelXorXfermode) 25 SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkPixelXorXfermode)
26 26
27 protected: 27 protected:
28 explicit SkPixelXorXfermode(SkColor opColor) : fOpColor(opColor) {} 28 explicit SkPixelXorXfermode(SkColor opColor) : fOpColor(opColor) {}
29 #ifdef SK_SUPPORT_LEGACY_DEEPFLATTENING
30 explicit SkPixelXorXfermode(SkReadBuffer& rb);
31 #endif
29 virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE; 32 virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE;
30 33
31 // override from SkXfermode 34 // override from SkXfermode
32 virtual SkPMColor xferColor(SkPMColor src, SkPMColor dst) const; 35 virtual SkPMColor xferColor(SkPMColor src, SkPMColor dst) const;
33 36
34 private: 37 private:
35 SkColor fOpColor; 38 SkColor fOpColor;
36 39
37 typedef SkXfermode INHERITED; 40 typedef SkXfermode INHERITED;
38 }; 41 };
39 42
40 #endif 43 #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