Lines Matching full:line
153 //Draw horizontal line
202 //Draw horizontal line
346 //Draw horizontal line in _rasterBlendingPolygonImageSegment()
389 //Draw horizontal line in _rasterBlendingPolygonImageSegment()
530 //Draw horizontal line in _rasterPolygonImageSegment()
580 //Draw horizontal line in _rasterPolygonImageSegment()
691 //Skip poly if it's an infinitely thin line in _rasterPolygonImage()
1056 auto line = &aaSpans->lines[y - aaSpans->yStart]; in _apply() local
1057 auto width = line->x[1] - line->x[0]; in _apply()
1062 dst = surface->buf32 + (offset + line->x[0]); in _apply()
1063 if (line->x[0] > 1) pixel = *(dst - 1); in _apply()
1068 if (dst + line->length[0] >= end) { in _apply()
1069 pos += (dst + line->length[0] - end); in _apply()
1072 while (pos <= line->length[0]) { in _apply()
1073 *dst = INTERPOLATE(*dst, pixel, line->coverage[0] * pos); in _apply()
1079 dst = surface->buf32 + offset + line->x[1] - 1; in _apply()
1081 if (line->x[1] < (int32_t)(surface->w - 1)) pixel = *(dst + 1); in _apply()
1083 pos = line->length[1]; in _apply()
1089 *dst = INTERPOLATE(*dst, pixel, 255 - (line->coverage[1] * pos)); in _apply()