Searched defs:DrawOval (Results 1 – 4 of 4) sorted by relevance
105 func (c *Canvas) DrawOval(rect *Rect, paint *Paint) { func
213 struct DrawOval final : Op { struct214 static const auto kType = Type::DrawOval;215 DrawOval(const SkRect& oval, const SkPaint& paint) : oval(oval), paint(paint) {} in DrawOval() function216 SkRect oval;217 SkPaint paint;218 void draw(SkCanvas* c, const SkMatrix&) const { c->drawOval(oval, paint); } in draw()
221 message DrawOval { message