Searched defs:DrawPath (Results 1 – 2 of 2) sorted by relevance
53 DrawPath, enumerator
231 struct DrawPath final : Op { struct232 static const auto kType = Type::DrawPath;233 DrawPath(const SkPath& path, const SkPaint& paint) : path(path), paint(paint) {} in DrawPath() argument234 SkPath path;235 SkPaint paint;236 void draw(SkCanvas* c, const SkMatrix&) const { c->drawPath(path, paint); } in draw()