Searched defs:DrawOval (Results 1 – 2 of 2) sorted by relevance
48 DrawOval, enumerator
223 struct DrawOval final : Op { struct224 static const auto kType = Type::DrawOval;225 DrawOval(const SkRect& oval, const SkPaint& paint) : oval(oval), paint(paint) {} in DrawOval() argument226 SkRect oval;227 SkPaint paint;228 void draw(SkCanvas* c, const SkMatrix&) const { c->drawOval(oval, paint); } in draw()