Lines Matching refs:rrect
39 * the shape's type (e.g. rect, rrect, or oval).
67 explicit GrShape(const SkRRect& rrect) { this->setRRect(rrect); }
81 // any potential simplification (e.g. if isRRect() is true and rrect().isRect() is true,
103 // type represents a rrect, rect, or oval.
106 // type represents a rrect, rect, or oval.
136 SkRRect& rrect() { SkASSERT(this->isRRect()); return fRRect; }
137 const SkRRect& rrect() const { SkASSERT(this->isRRect()); return fRRect; }
150 // true will still be considered an rrect by this shape until simplify() is called.
162 void setRRect(const SkRRect& rrect) {
164 fRRect = rrect;
263 void simplifyRRect(const SkRRect& rrect, SkPathDirection dir, unsigned start, unsigned flags);