Lines Matching defs:lastX
185 int lastX = clip.fLeft; // init x to clip.fLeft
197 SkASSERT(delta.fX >= lastX); // delta must be x sorted
198 if (delta.fX > lastX) { // we have proceeded to a new x (different from lastX)
201 alphas[lastX - clip.fLeft] = alpha; // set alpha at lastX
202 runs[lastX - clip.fLeft] = delta.fX - lastX; // set the run length
203 lastX = delta.fX; // now set lastX to current x
211 alphas[lastX - clip.fLeft] = alpha;
212 runs[lastX - clip.fLeft] = clip.fRight - lastX;