Searched defs:DrawOval (Results 1 – 1 of 1) sorted by relevance
218 struct DrawOval final : Op { struct219 static const auto kType = Type::DrawOval;220 DrawOval(const SkRect& oval, const SkPaint& paint) : oval(oval), paint(paint) {} in DrawOval() function221 SkRect oval;222 SkPaint paint;223 void draw(SkCanvas* c, const SkMatrix&) const { c->drawOval(oval, paint); } in draw()