| 214 | } |
| 215 | |
| 216 | static void drawBegin(SVGDef::Context* ctx) { |
| 217 | nvgBeginPath(ctx->nvg); |
| 218 | ctx->previousPathXY.push_back(Vec2::zero); |
| 219 | ctx->transformCounts.push_back(0); |
| 220 | } |
| 221 | |
| 222 | static void drawEnd(SVGDef::Context* ctx, const FillStrokeData& data) { |
| 223 | drawFillStroke(ctx, data); |
no test coverage detected