Home | History | Annotate | Download | only in core

Lines Matching full:edge

17     SkEdge* edge = typedAllocThrow<SkEdge>(fAlloc);
18 if (edge->setLine(pts[0], pts[1], NULL, fShiftUp)) {
19 fList.push(edge);
21 // TODO: unallocate edge from storage...
26 SkQuadraticEdge* edge = typedAllocThrow<SkQuadraticEdge>(fAlloc);
27 if (edge->setQuadratic(pts, fShiftUp)) {
28 fList.push(edge);
30 // TODO: unallocate edge from storage...
35 SkCubicEdge* edge = typedAllocThrow<SkCubicEdge>(fAlloc);
36 if (edge->setCubic(pts, NULL, fShiftUp)) {
37 fList.push(edge);
39 // TODO: unallocate edge from storage...