| 637 | } |
| 638 | |
| 639 | static void nsvg__resetPath(NSVGparser* p) |
| 640 | { |
| 641 | p->npts = 0; |
| 642 | if (p->cpts > 0 && p->pts) { |
| 643 | FreePool(p->pts); |
| 644 | p->pts = NULL; |
| 645 | p->cpts = 0; |
| 646 | } |
| 647 | } |
| 648 | |
| 649 | static void nsvg__addPoint(NSVGparser* p, float x, float y) |
| 650 | { |
no test coverage detected