Home | History | Annotate | Download | only in effects

Lines Matching refs:Mode

16 /** DEPRECATED - use SkXfermode::Mode instead
28 enum Mode {
53 /** Return an SkXfermode object for the specified mode.
55 static SkXfermode* CreateXfermode(Mode mode);
58 porter-duff transfer mode.
60 static SkXfermodeProc GetXfermodeProc(Mode mode);
63 porter-duff transfer mode and srcColor to a 16bit device color. Note,
64 if the mode+srcColor might return a non-opaque color, then there is not
67 static SkXfermodeProc16 GetXfermodeProc16(Mode mode, SkColor srcColor);
70 modes (via SkXfermode::Coeff), return true and if not null, set mode
71 to the corresponding porterduff mode. If it is not recognized as a one,
72 return false and ignore the mode parameter.
74 static bool IsMode(SkXfermode*, Mode* mode);
76 /** Return the corersponding SkXfermode::Mode
78 static SkXfermode::Mode ToXfermodeMode(Mode);