Home | History | Annotate | Download | only in core

Lines Matching defs:bot

735         int bot = r.fBottom - offsetY;
736 SkASSERT(bot >= prevBot);
737 if (bot > prevBot) {
752 currY->fY = bot - 1;
755 prevBot = bot;
1512 static void adjust_iter(SkAAClip::Iter& iter, int& topA, int& botA, int bot) {
1513 if (bot == botA) {
1539 int top, bot;
1545 bot = botA;
1547 bot = topA = topB;
1554 bot = botB;
1556 bot = topB = topA;
1560 bot = topA = topB = SkMin32(botA, botB);
1569 if (bot > bounds.fBottom) {
1570 bot = bounds.fBottom;
1572 SkASSERT(top < bot);
1575 builder.addRun(bounds.fLeft, bot - 1, 0, bounds.width());
1577 SkASSERT(bot <= bounds.fBottom);
1580 operatorX(builder, bot - 1, rowIterA, rowIterB, proc, bounds);
1583 adjust_iter(iterA, topA, botA, bot);
1584 adjust_iter(iterB, topB, botB, bot);