2008-12-17 15:59:43 +00:00
|
|
|
/*
|
2011-07-28 14:26:00 +00:00
|
|
|
* Copyright 2006 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 SkPorterDuff_DEFINED
|
|
|
|
#define SkPorterDuff_DEFINED
|
|
|
|
|
|
|
|
#include "SkColor.h"
|
2009-06-23 03:01:32 +00:00
|
|
|
#include "SkXfermode.h"
|
2008-12-17 15:59:43 +00:00
|
|
|
|
2014-12-03 21:13:02 +00:00
|
|
|
//#define SK_SUPPORT_LEGACY_PORTER_DUFF
|
|
|
|
|
|
|
|
// Temporary guard until we can remove the dependencies in android. Then we
|
|
|
|
// plan to remove this entirely.
|
|
|
|
#ifdef SK_SUPPORT_LEGACY_PORTER_DUFF
|
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
class SkXfermode;
|
|
|
|
|
2012-10-12 14:41:39 +00:00
|
|
|
class SK_API SkPorterDuff {
|
2008-12-17 15:59:43 +00:00
|
|
|
public:
|
|
|
|
/** List of predefined xfermodes. In general, the algebra for the modes
|
|
|
|
uses the following symbols:
|
|
|
|
Sa, Sc - source alpha and color
|
|
|
|
Da, Dc - destination alpha and color (before compositing)
|
|
|
|
[a, c] - Resulting (alpha, color) values
|
|
|
|
For these equations, the colors are in premultiplied state.
|
|
|
|
If no xfermode is specified, kSrcOver is assumed.
|
|
|
|
*/
|
|
|
|
enum Mode {
|
|
|
|
kClear_Mode, //!< [0, 0]
|
|
|
|
kSrc_Mode, //!< [Sa, Sc]
|
|
|
|
kDst_Mode, //!< [Da, Dc]
|
|
|
|
kSrcOver_Mode, //!< [Sa + Da - Sa*Da, Rc = Sc + (1 - Sa)*Dc]
|
|
|
|
kDstOver_Mode, //!< [Sa + Da - Sa*Da, Rc = Dc + (1 - Da)*Sc]
|
|
|
|
kSrcIn_Mode, //!< [Sa * Da, Sc * Da]
|
|
|
|
kDstIn_Mode, //!< [Sa * Da, Sa * Dc]
|
|
|
|
kSrcOut_Mode, //!< [Sa * (1 - Da), Sc * (1 - Da)]
|
|
|
|
kDstOut_Mode, //!< [Da * (1 - Sa), Dc * (1 - Sa)]
|
|
|
|
kSrcATop_Mode, //!< [Da, Sc * Da + (1 - Sa) * Dc]
|
|
|
|
kDstATop_Mode, //!< [Sa, Sa * Dc + Sc * (1 - Da)]
|
|
|
|
kXor_Mode, //!< [Sa + Da - 2 * Sa * Da, Sc * (1 - Da) + (1 - Sa) * Dc]
|
|
|
|
kDarken_Mode, //!< [Sa + Da - Sa*Da, Sc*(1 - Da) + Dc*(1 - Sa) + min(Sc, Dc)]
|
|
|
|
kLighten_Mode, //!< [Sa + Da - Sa*Da, Sc*(1 - Da) + Dc*(1 - Sa) + max(Sc, Dc)]
|
2013-01-30 21:36:11 +00:00
|
|
|
kModulate_Mode, //!< [Sa * Da, Sc * Dc] multiplies all components
|
2008-12-17 15:59:43 +00:00
|
|
|
kScreen_Mode, //!< [Sa + Da - Sa * Da, Sc + Dc - Sc * Dc]
|
2009-04-24 12:43:40 +00:00
|
|
|
kAdd_Mode, //!< Saturate(S + D)
|
2011-11-08 19:00:26 +00:00
|
|
|
#ifdef SK_BUILD_FOR_ANDROID
|
2011-03-14 20:30:14 +00:00
|
|
|
kOverlay_Mode,
|
|
|
|
#endif
|
2008-12-17 15:59:43 +00:00
|
|
|
|
|
|
|
kModeCount
|
|
|
|
};
|
2009-06-23 03:01:32 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
/** Return an SkXfermode object for the specified mode.
|
|
|
|
*/
|
|
|
|
static SkXfermode* CreateXfermode(Mode mode);
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
/** Return a function pointer to a routine that applies the specified
|
|
|
|
porter-duff transfer mode.
|
|
|
|
*/
|
|
|
|
static SkXfermodeProc GetXfermodeProc(Mode mode);
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
/** Return a function pointer to a routine that applies the specified
|
|
|
|
porter-duff transfer mode and srcColor to a 16bit device color. Note,
|
|
|
|
if the mode+srcColor might return a non-opaque color, then there is not
|
|
|
|
16bit proc, and this will return NULL.
|
|
|
|
*/
|
|
|
|
static SkXfermodeProc16 GetXfermodeProc16(Mode mode, SkColor srcColor);
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2008-12-17 15:59:43 +00:00
|
|
|
/** If the specified xfermode advertises itself as one of the porterduff
|
|
|
|
modes (via SkXfermode::Coeff), return true and if not null, set mode
|
|
|
|
to the corresponding porterduff mode. If it is not recognized as a one,
|
|
|
|
return false and ignore the mode parameter.
|
|
|
|
*/
|
|
|
|
static bool IsMode(SkXfermode*, Mode* mode);
|
2009-06-23 03:01:32 +00:00
|
|
|
|
|
|
|
/** Return the corersponding SkXfermode::Mode
|
|
|
|
*/
|
|
|
|
static SkXfermode::Mode ToXfermodeMode(Mode);
|
2013-10-31 17:28:30 +00:00
|
|
|
} SK_ATTR_DEPRECATED("use SkXfermode::Mode");
|
2008-12-17 15:59:43 +00:00
|
|
|
|
|
|
|
#endif
|
2014-12-03 21:13:02 +00:00
|
|
|
|
|
|
|
#endif
|