Searched defs:DrawOval (Results 1 – 2 of 2) sorted by relevance
105 func (c *Canvas) DrawOval(rect *Rect, paint *Paint) { func
198 struct DrawOval final : Op { struct199 static const auto kType = Type::DrawOval;200 DrawOval(const SkRect& oval, const SkPaint& paint) : oval(oval), paint(paint) {} in DrawOval() argument201 SkRect oval;202 SkPaint paint;203 void draw(SkCanvas* c, const SkMatrix&) const { c->drawOval(oval, paint); } in draw()