Lines Matching refs:GrShape
49 class GrShape {
64 GrShape() {} in GrShape() function
65 explicit GrShape(const SkPoint& point) { this->setPoint(point); } in GrShape() function
66 explicit GrShape(const SkRect& rect) { this->setRect(rect); } in GrShape() function
67 explicit GrShape(const SkRRect& rrect) { this->setRRect(rrect); } in GrShape() function
68 explicit GrShape(const SkPath& path) { this->setPath(path); } in GrShape() function
69 explicit GrShape(const GrArc& arc) { this->setArc(arc); } in GrShape() function
70 explicit GrShape(const GrLineSegment& line){ this->setLine(line); } in GrShape() function
72 GrShape(const GrShape& shape) { *this = shape; } in GrShape() function
74 ~GrShape() { this->reset(); } in ~GrShape()
78 GrShape& operator=(const GrShape& shape);