Lines Matching refs:active
1115 NSVGactiveEdge *active = NULL; in nsvg__rasterizeSortedEdges() local
1128 NSVGactiveEdge **step = &active; in nsvg__rasterizeSortedEdges()
1147 step = &active; in nsvg__rasterizeSortedEdges()
1168 if (active == NULL) { in nsvg__rasterizeSortedEdges()
1169 active = z; in nsvg__rasterizeSortedEdges()
1170 } else if (z->x < active->x) { in nsvg__rasterizeSortedEdges()
1172 z->next = active; in nsvg__rasterizeSortedEdges()
1173 active = z; in nsvg__rasterizeSortedEdges()
1176 NSVGactiveEdge* p = active; in nsvg__rasterizeSortedEdges()
1188 if (active != NULL) in nsvg__rasterizeSortedEdges()
1189 nsvg__fillActiveEdges(r->scanline, r->width, active, maxWeight, &xmin, &xmax, fillRule); in nsvg__rasterizeSortedEdges()