Searched refs:SkSVGStopColor (Results 1 – 2 of 2) sorted by relevance
425 class SK_API SkSVGStopColor {434 SkSVGStopColor() : fType(Type::kColor), fColor(SK_ColorBLACK) {} in SkSVGStopColor() function435 explicit SkSVGStopColor(Type t) : fType(t), fColor(SK_ColorBLACK) {} in SkSVGStopColor() function436 explicit SkSVGStopColor(const SkSVGColorType& c) : fType(Type::kColor), fColor(c) {} in SkSVGStopColor() function438 SkSVGStopColor(const SkSVGStopColor&) = default;439 SkSVGStopColor& operator=(const SkSVGStopColor&) = default;441 bool operator==(const SkSVGStopColor& other) const {444 bool operator!=(const SkSVGStopColor& other) const { return !(*this == other); }
77 using SkSVGStopColorValue = SkSVGWrapperValue<SkSVGStopColor , SkSVGValue::Type::kStopColor >;