Home | History | Annotate | Download | only in effects

Lines Matching defs:Mode

25 /** DEPRECATED - use SkXfermode::Mode instead
37 enum Mode {
62 /** Return an SkXfermode object for the specified mode.
64 static SkXfermode* CreateXfermode(Mode mode);
67 porter-duff transfer mode.
69 static SkXfermodeProc GetXfermodeProc(Mode mode);
72 porter-duff transfer mode and srcColor to a 16bit device color. Note,
73 if the mode+srcColor might return a non-opaque color, then there is not
76 static SkXfermodeProc16 GetXfermodeProc16(Mode mode, SkColor srcColor);
79 modes (via SkXfermode::Coeff), return true and if not null, set mode
80 to the corresponding porterduff mode. If it is not recognized as a one,
81 return false and ignore the mode parameter.
83 static bool IsMode(SkXfermode*, Mode* mode);
85 /** Return the corersponding SkXfermode::Mode
87 static SkXfermode::Mode ToXfermodeMode(Mode);