Home | History | Annotate | Download | only in core

Lines Matching refs:edge

26     SkEdge* edge = typedAllocThrow<SkEdge>(fAlloc);
27 if (edge->setLine(pts[0], pts[1], fShiftUp)) {
28 fList.push(edge);
30 // TODO: unallocate edge from storage...
35 SkQuadraticEdge* edge = typedAllocThrow<SkQuadraticEdge>(fAlloc);
36 if (edge->setQuadratic(pts, fShiftUp)) {
37 fList.push(edge);
39 // TODO: unallocate edge from storage...
44 SkCubicEdge* edge = typedAllocThrow<SkCubicEdge>(fAlloc);
45 if (edge->setCubic(pts, NULL, fShiftUp)) {
46 fList.push(edge);
48 // TODO: unallocate edge from storage...
100 SkEdge* edge = reinterpret_cast<SkEdge*>(storage);
121 if (edge->setLine(lines[i], lines[i + 1], shiftUp)) {
122 *edgePtr++ = edge++;
141 if (edge->setLine(pts[0], pts[1], shiftUp)) {
142 *edgePtr++ = edge++;
151 SkASSERT((char*)edge <= (char*)fEdgeList);