Home | History | Annotate | Download | only in core

Lines Matching refs:x1

319     int x1 = left + compute_anti_width(runs);
321 if (x1 <= fClipRect.fLeft)
324 SkASSERT(x0 < x1);
334 SkASSERT(x0 < x1 && runs[x1 - x0] == 0);
335 if (x1 > fClipRect.fRight)
337 x1 = fClipRect.fRight;
338 SkAlphaRuns::BreakAt((int16_t*)runs, (uint8_t*)aa, x1 - x0);
339 ((int16_t*)runs)[x1 - x0] = 0;
342 SkASSERT(x0 < x1 && runs[x1 - x0] == 0);
343 SkASSERT(compute_anti_width(runs) == x1 - x0);