Lines Matching full:phase
34 SkScalar phase, Style style) : fPath(path)
42 // cleanup their phase parameter, inverting it so that it becomes an
44 if (phase < 0) {
45 phase = -phase;
46 if (phase > advance) {
47 phase = SkScalarMod(phase, advance);
50 if (phase > advance) {
51 phase = SkScalarMod(phase, advance);
53 phase = advance - phase;
55 // now catch the edge case where phase == advance (within epsilon)
56 if (phase >= advance) {
57 phase = 0;
59 SkASSERT(phase >= 0);
62 fInitialOffset = phase;