| 2176 | } |
| 2177 | |
| 2178 | static void nsvg__pathLineTo(NSVGparser* p, float* cpx, float* cpy, float* args, int rel) |
| 2179 | { |
| 2180 | if (rel) { |
| 2181 | *cpx += args[0]; |
| 2182 | *cpy += args[1]; |
| 2183 | } else { |
| 2184 | *cpx = args[0]; |
| 2185 | *cpy = args[1]; |
| 2186 | } |
| 2187 | nsvg__lineTo(p, *cpx, *cpy); |
| 2188 | } |
| 2189 | |
| 2190 | static void nsvg__pathHLineTo(NSVGparser* p, float* cpx, float* cpy, float* args, int rel) |
| 2191 | { |
no test coverage detected