Searched defs:ClipRect (Results 1 – 3 of 3) sorted by relevance
45 struct ClipRect { struct53 ClipRect* clipRects; argument
150 struct ClipRect final : Op { struct151 static const auto kType = Type::ClipRect;152 ClipRect(const SkRect& rect, SkClipOp op, bool aa) : rect(rect), op(op), aa(aa) {} in ClipRect() argument153 SkRect rect;154 SkClipOp op;155 bool aa;156 void draw(SkCanvas* c, const SkMatrix&) { c->clipRect(rect, op, aa); } in draw()
306 void trackBounds(const ClipRect&) { this->pushControl(); } in trackBounds()