Home | History | Annotate | Download | only in effects

Lines Matching refs:phase

35     SkScalar phase, Style style) : fPath(path)
43 // cleanup their phase parameter, inverting it so that it becomes an
45 if (phase < 0) {
46 phase = -phase;
47 if (phase > advance) {
48 phase = SkScalarMod(phase, advance);
51 if (phase > advance) {
52 phase = SkScalarMod(phase, advance);
54 phase = advance - phase;
56 // now catch the edge case where phase == advance (within epsilon)
57 if (phase >= advance) {
58 phase = 0;
60 SkASSERT(phase >= 0);
63 fInitialOffset = phase;