Home | History | Annotate | Download | only in core

Lines Matching defs:x1

287     int x1 = left + compute_anti_width(runs);
289 if (x1 <= fClipRect.fLeft) {
293 SkASSERT(x0 < x1);
302 SkASSERT(x0 < x1 && runs[x1 - x0] == 0);
303 if (x1 > fClipRect.fRight) {
304 x1 = fClipRect.fRight;
305 SkAlphaRuns::BreakAt((int16_t*)runs, (uint8_t*)aa, x1 - x0);
306 ((int16_t*)runs)[x1 - x0] = 0;
309 SkASSERT(x0 < x1 && runs[x1 - x0] == 0);
310 SkASSERT(compute_anti_width(runs) == x1 - x0);