Lines Matching refs:nextEdge
253 SSEdge* nextEdge = fEdge->fNext->fNext; in apply() local
254 if (!prevEdge || !nextEdge || !prevEdge->fEdge || !nextEdge->fEdge) { in apply()
268 prevEdge->fNext = nextEdge->fPrev = ssv; in apply()
270 ssv->fNext = nextEdge; in apply()
271 if (!prevEdge->fEdge || !nextEdge->fEdge) { in apply()
277 if (nextEdge->fEvent) { in apply()
278 nextEdge->fEvent->fEdge = nullptr; in apply()
280 if (prevEdge->fPrev == nextEdge->fNext) { in apply()
282 prevEdge->fEdge = nextEdge->fEdge = nullptr; in apply()
284 triangulator->computeBisector(prevEdge->fEdge, nextEdge->fEdge, dest); in apply()
285 SkASSERT(prevEdge != fEdge && nextEdge != fEdge); in apply()
288 triangulator->makeEvent(nextEdge, events); in apply()
290 triangulator->makeEvent(prevEdge, prevEdge->fPrev->fVertex, nextEdge, dest, events, c); in apply()
291 triangulator->makeEvent(nextEdge, nextEdge->fNext->fVertex, prevEdge, dest, events, c); in apply()