Home | History | Annotate | Download | only in core

Lines Matching defs:x1

291     int x1 = left + compute_anti_width(runs);
293 if (x1 <= fClipRect.fLeft) {
297 SkASSERT(x0 < x1);
306 SkASSERT(x0 < x1 && runs[x1 - x0] == 0);
307 if (x1 > fClipRect.fRight) {
308 x1 = fClipRect.fRight;
309 SkAlphaRuns::BreakAt((int16_t*)runs, (uint8_t*)aa, x1 - x0);
310 ((int16_t*)runs)[x1 - x0] = 0;
313 SkASSERT(x0 < x1 && runs[x1 - x0] == 0);
314 SkASSERT(compute_anti_width(runs) == x1 - x0);