Searched defs:DrawOval (Results 1 – 3 of 3) sorted by relevance
22 public class DrawOval extends DrawBase4 { class34 public DrawOval( in DrawOval() method in DrawOval
48 DrawOval, enumerator
256 struct DrawOval final : Op { struct257 static const auto kType = Type::DrawOval;258 DrawOval(const SkRect& oval, const SkPaint& paint) : oval(oval), paint(paint) {} in DrawOval() function259 SkRect oval;260 SkPaint paint;261 void draw(SkCanvas* c, const SkMatrix&) const { c->drawOval(oval, paint); } in draw()