2008-12-17 15:59:43 +00:00
|
|
|
/*
|
2011-07-28 14:26:00 +00:00
|
|
|
* Copyright 2007 The Android Open Source Project
|
2008-12-17 15:59:43 +00:00
|
|
|
*
|
2011-07-28 14:26:00 +00:00
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
2008-12-17 15:59:43 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SkPixelXorXfermode_DEFINED
|
|
|
|
#define SkPixelXorXfermode_DEFINED
|
|
|
|
|
|
|
|
#include "SkXfermode.h"
|
|
|
|
|
|
|
|
/** SkPixelXorXfermode implements a simple pixel xor (op ^ src ^ dst).
|
|
|
|
This transformation does not follow premultiplied conventions, therefore
|
|
|
|
this proc *always* returns an opaque color (alpha == 255). Thus it is
|
|
|
|
not really usefull for operating on blended colors.
|
|
|
|
*/
|
2012-10-12 14:41:39 +00:00
|
|
|
class SK_API SkPixelXorXfermode : public SkXfermode {
|
2008-12-17 15:59:43 +00:00
|
|
|
public:
|
2014-02-20 20:40:19 +00:00
|
|
|
static SkPixelXorXfermode* Create(SkColor opColor) {
|
|
|
|
return SkNEW_ARGS(SkPixelXorXfermode, (opColor));
|
|
|
|
}
|
2008-12-17 15:59:43 +00:00
|
|
|
|
2014-03-13 18:02:17 +00:00
|
|
|
SK_TO_STRING_OVERRIDE()
|
2012-03-26 17:57:35 +00:00
|
|
|
SK_DECLARE_PUBLIC_FLATTENABLE_DESERIALIZATION_PROCS(SkPixelXorXfermode)
|
2011-04-27 14:09:52 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
protected:
|
2014-05-15 15:40:41 +00:00
|
|
|
explicit SkPixelXorXfermode(SkColor opColor) : fOpColor(opColor) {}
|
2014-08-21 14:59:51 +00:00
|
|
|
#ifdef SK_SUPPORT_LEGACY_DEEPFLATTENING
|
2014-05-15 15:40:41 +00:00
|
|
|
explicit SkPixelXorXfermode(SkReadBuffer& rb);
|
2014-08-21 14:59:51 +00:00
|
|
|
#endif
|
2014-01-30 18:58:24 +00:00
|
|
|
virtual void flatten(SkWriteBuffer&) const SK_OVERRIDE;
|
2012-03-29 15:18:04 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
// override from SkXfermode
|
2012-12-24 14:38:46 +00:00
|
|
|
virtual SkPMColor xferColor(SkPMColor src, SkPMColor dst) const;
|
2008-12-17 15:59:43 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
SkColor fOpColor;
|
|
|
|
|
|
|
|
typedef SkXfermode INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|