| 402 | } |
| 403 | |
| 404 | inline void SwapSides(OutRec& outrec) |
| 405 | { |
| 406 | Active* e2 = outrec.front_edge; |
| 407 | outrec.front_edge = outrec.back_edge; |
| 408 | outrec.back_edge = e2; |
| 409 | outrec.pts = outrec.pts->next; |
| 410 | } |
| 411 | |
| 412 | inline OutRec* GetRealOutRec(OutRec* outrec) |
| 413 | { |
nothing calls this directly
no outgoing calls
no test coverage detected