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

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

Issue 25430005: Fix for potential typedef issue Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
« no previous file with comments | « include/effects/SkPerlinNoiseShader.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 typedef SkXfermode INHERITED;
20
19 public: 21 public:
20 SkPixelXorXfermode(SkColor opColor) : fOpColor(opColor) {} 22 SkPixelXorXfermode(SkColor opColor) : fOpColor(opColor) {}
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:
26 SkPixelXorXfermode(SkFlattenableReadBuffer& rb); 28 SkPixelXorXfermode(SkFlattenableReadBuffer& rb);
27 virtual void flatten(SkFlattenableWriteBuffer&) const SK_OVERRIDE; 29 virtual void flatten(SkFlattenableWriteBuffer&) const SK_OVERRIDE;
28 30
29 // override from SkXfermode 31 // override from SkXfermode
30 virtual SkPMColor xferColor(SkPMColor src, SkPMColor dst) const; 32 virtual SkPMColor xferColor(SkPMColor src, SkPMColor dst) const;
31 33
32 private: 34 private:
33 SkColor fOpColor; 35 SkColor fOpColor;
34
35 typedef SkXfermode INHERITED;
36 }; 36 };
37 37
38 #endif 38 #endif
OLDNEW
« no previous file with comments | « include/effects/SkPerlinNoiseShader.h ('k') | include/effects/SkRectShaderImageFilter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698