Lines Matching refs:fill
30 // Generates a path to stroke along the top of each plot and a fill path for the area below each
31 // plot. The fill path is bounded below by the bottomData plot points or a horizontal line at
39 SkPath* plot, SkPath* fill) {
41 fill->rewind();
44 fill->incReserve(topData.count() + 2);
46 fill->incReserve(2 * topData.count());
55 fill->moveTo(x, topData[leftShift]);
59 fill->lineTo(x, topData[i + leftShift]);
65 fill->lineTo(x, topData[i]);
75 fill->lineTo(x, (*bottomData)[leftShift - 1 - i]);
79 fill->lineTo(x, (*bottomData)[bottomData->count() - 1 - i]);
82 fill->lineTo(x - xDelta, yBase);
83 fill->lineTo(xLeft, yBase);