Searched defs:DrawOval (Results 1 – 2 of 2) sorted by relevance
48 DrawOval, enumerator
252 struct DrawOval final : Op { struct253 static const auto kType = Type::DrawOval;254 DrawOval(const SkRect& oval, const SkPaint& paint) : oval(oval), paint(paint) {} in DrawOval() argument255 SkRect oval;256 SkPaint paint;257 void draw(SkCanvas* c, const SkMatrix&) const { c->drawOval(oval, paint); } in draw()