Home
last modified time | relevance | path

Searched defs:DrawPath (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/libs/hwui/
DRecordingCanvas.cpp197 struct DrawPath final : Op { struct
198 static const auto kType = Type::DrawPath;
199 DrawPath(const SkPath& path, const SkPaint& paint) : path(path), paint(paint) {} in DrawPath() argument
200 SkPath path;
201 SkPaint paint;
202 void draw(SkCanvas* c, const SkMatrix&) const { c->drawPath(path, paint); } in draw()