• Home
  • Raw
  • Download

Lines Matching refs:GrShape

36 class GrShape {
42 GrShape() { this->initType(Type::kEmpty); } in GrShape() function
44 explicit GrShape(const SkPath& path) : GrShape(path, GrStyle::SimpleFill()) {} in GrShape() function
46 explicit GrShape(const SkRRect& rrect) : GrShape(rrect, GrStyle::SimpleFill()) {} in GrShape() function
48 explicit GrShape(const SkRect& rect) : GrShape(rect, GrStyle::SimpleFill()) {} in GrShape() function
50 GrShape(const SkPath& path, const GrStyle& style) : fStyle(style) { in GrShape() function
55 GrShape(const SkRRect& rrect, const GrStyle& style) : fStyle(style) { in GrShape() function
64 GrShape(const SkRRect& rrect, SkPath::Direction dir, unsigned start, bool inverted, in GrShape() function
84 GrShape(const SkRect& rect, const GrStyle& style) : fStyle(style) { in GrShape() function
93 GrShape(const SkPath& path, const SkPaint& paint) : fStyle(paint) { in GrShape() function
98 GrShape(const SkRRect& rrect, const SkPaint& paint) : fStyle(paint) { in GrShape() function
107 GrShape(const SkRect& rect, const SkPaint& paint) : fStyle(paint) { in GrShape() function
116 static GrShape MakeArc(const SkRect& oval, SkScalar startAngleDegrees,
119 GrShape(const GrShape&);
120 GrShape& operator=(const GrShape& that);
122 ~GrShape() { this->changeType(Type::kEmpty); } in ~GrShape()
141 static GrShape MakeFilled(const GrShape& original, FillInversion = FillInversion::kPreserve);
150 GrShape applyStyle(GrStyle::Apply apply, SkScalar scale) const { in applyStyle()
151 return GrShape(*this, apply, scale); in applyStyle()
508 GrShape(const GrShape& parentShape, GrStyle::Apply, SkScalar scale);
514 void setInheritedKey(const GrShape& parentShape, GrStyle::Apply, SkScalar scale);