| 2197 | } |
| 2198 | |
| 2199 | static void nsvg__pathVLineTo(NSVGparser* p, float* cpx, float* cpy, float* args, int rel) |
| 2200 | { |
| 2201 | if (rel) |
| 2202 | *cpy += args[0]; |
| 2203 | else |
| 2204 | *cpy = args[0]; |
| 2205 | nsvg__lineTo(p, *cpx, *cpy); |
| 2206 | } |
| 2207 | |
| 2208 | static void nsvg__pathCubicBezTo(NSVGparser* p, float* cpx, float* cpy, |
| 2209 | float* cpx2, float* cpy2, float* args, int rel) |
no test coverage detected