Home | History | Annotate | Download | only in android

Lines Matching refs:Mode

22     enum Mode {
30 There are two modes, and each mode interprets a tolerance value.
32 Avoid: In this mode, drawing is allowed only on destination pixels that
37 Target: In this mode, drawing only occurs on destination pixels that
42 static SkAvoidXfermode* Create(SkColor opColor, U8CPU tolerance, Mode mode) {
43 return new SkAvoidXfermode(opColor, tolerance, mode);
64 SkAvoidXfermode(SkColor opColor, U8CPU tolerance, Mode mode);
71 Mode fMode;