MCPcopy Create free account
hub / github.com/MapServer/MapServer / DisposePolyPts

Function DisposePolyPts

renderers/agg/src/clipper.cpp:274–285  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

272//------------------------------------------------------------------------------
273
274void DisposePolyPts(PolyPt*& pp)
275{
276 if (pp == 0) return;
277 PolyPt *tmpPp;
278 pp->prev->next = 0;
279 while( pp )
280 {
281 tmpPp = pp;
282 pp = pp->next;
283 delete tmpPp ;
284 }
285}
286//------------------------------------------------------------------------------
287
288void InitEdge(TEdge *e, TEdge *eNext,

Callers 2

DisposeAllPolyPtsMethod · 0.85
FixupOutPolygonFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected