Home | History | Annotate | Download | only in sna

Lines Matching defs:ytop

163 	int ytop;
180 * into bucket EDGE_BUCKET_INDEX(edge->ytop, polygon->ymin) when
472 unsigned ix = EDGE_Y_BUCKET_INDEX(e->ytop, polygon->ymin);
474 assert(e->ytop < polygon->ymax);
516 int ytop, ybot;
521 ytop = pixman_fixed_to_grid_y(t->top) + dy;
522 if (ytop < ymin)
523 ytop = ymin;
530 __FUNCTION__, dx, dy, ytop, ybot,
531 ((int64_t)(ytop - dy)<<16) / SAMPLES_Y - edge->p1.y,
534 e->ytop = ytop;
535 e->height_left = ybot - ytop;
562 tmp = (int64_t)(2*(ytop - dy) + 1) << 16;
613 ytop, ybot;
632 ytop = pixman_fixed_to_grid_y(p1->y) + dy;
633 if (ytop < polygon->ymin)
634 ytop = polygon->ymin;
640 if (ybot <= ytop)
643 e->ytop = ytop;
644 e->height_left = ybot - ytop;
671 tmp = (int64_t)(2*(ytop - dy) + 1) << 16;
706 e->ytop == prev->ytop &&
713 unsigned ix = EDGE_Y_BUCKET_INDEX(e->ytop,
900 struct edge **b = &buckets[edge->ytop - ymin];