Home
last modified time | relevance | path

Searched defs:ClipRRect (Results 1 – 2 of 2) sorted by relevance

/external/skia/src/core/
DSkLiteDL.cpp155 struct ClipRRect final : Op { struct
156 static const auto kType = Type::ClipRRect;
157 ClipRRect(const SkRRect& rrect, SkClipOp op, bool aa) : rrect(rrect), op(op), aa(aa) {} in ClipRRect() argument
158 SkRRect rrect;
159 SkClipOp op;
160 bool aa;
161 void draw(SkCanvas* c, const SkMatrix&) const { c->clipRRect(rrect, op, aa); } in draw()
DSkRecordDraw.cpp297 void trackBounds(const ClipRRect&) { this->pushControl(); } in trackBounds()