Lines Matching refs:fill
24 // Generates a path to stroke along the top of each plot and a fill path for the area below each
25 // plot. The fill path is bounded below by the bottomData plot points or a horizontal line at
33 SkPathBuilder* plot, SkPathBuilder* fill) {
36 fill->incReserve(topData.count() + 2);
38 fill->incReserve(2 * topData.count());
47 fill->moveTo(x, topData[leftShift]);
51 fill->lineTo(x, topData[i + leftShift]);
57 fill->lineTo(x, topData[i]);
67 fill->lineTo(x, (*bottomData)[leftShift - 1 - i]);
71 fill->lineTo(x, (*bottomData)[bottomData->count() - 1 - i]);
74 fill->lineTo(x - xDelta, yBase);
75 fill->lineTo(xLeft, yBase);