Home
last modified time | relevance | path

Searched refs:SkSVGColor (Results 1 – 8 of 8) sorted by relevance

/external/skia/modules/svg/src/
DSkSVGAttribute.cpp13 result.fFill.set(SkSVGPaint(SkSVGColor(SK_ColorBLACK))); in MakeInitial()
41 result.fStopColor.set(SkSVGColor(SK_ColorBLACK)); in MakeInitial()
43 result.fFloodColor.set(SkSVGColor(SK_ColorBLACK)); in MakeInitial()
45 result.fLightingColor.set(SkSVGColor(SK_ColorWHITE)); in MakeInitial()
DSkSVGNode.cpp19 fPresentationAttributes.fStopColor.set(SkSVGColor(SK_ColorBLACK)); in SkSVGNode()
21 fPresentationAttributes.fFloodColor.set(SkSVGColor(SK_ColorBLACK)); in SkSVGNode()
23 fPresentationAttributes.fLightingColor.set(SkSVGColor(SK_ColorWHITE)); in SkSVGNode()
DSkSVGRenderContext.cpp461 SkSVGColorType SkSVGRenderContext::resolveSvgColor(const SkSVGColor& color) const { in resolveSvgColor()
463 case SkSVGColor::Type::kColor: in resolveSvgColor()
465 case SkSVGColor::Type::kCurrentColor: in resolveSvgColor()
467 case SkSVGColor::Type::kICCColor: in resolveSvgColor()
DSkSVGAttributeParser.cpp263 bool SkSVGAttributeParser::parse(SkSVGColor* color) { in parse()
268 *color = SkSVGColor(c); in parse()
271 *color = SkSVGColor(SkSVGColor::Type::kCurrentColor); in parse()
543 SkSVGColor c; in parse()
/external/skia/modules/svg/include/
DSkSVGAttribute.h106 SkSVGProperty<SkSVGColor , false> fStopColor;
108 SkSVGProperty<SkSVGColor , false> fFloodColor;
110 SkSVGProperty<SkSVGColor , false> fLightingColor;
DSkSVGTypes.h162 class SkSVGColor {
170 SkSVGColor() : fType(Type::kColor), fColor(SK_ColorBLACK) {} in SkSVGColor() function
171 explicit SkSVGColor(Type t) : fType(t), fColor(SK_ColorBLACK) {} in SkSVGColor() function
172 explicit SkSVGColor(const SkSVGColorType& c) : fType(Type::kColor), fColor(c) {} in SkSVGColor() function
173 bool operator==(const SkSVGColor& other) const {
176 bool operator!=(const SkSVGColor& other) const { return !(*this == other); }
196 explicit SkSVGPaint(const SkSVGColor& c) : fType(Type::kColor), fColor(c) {} in SkSVGPaint()
197 SkSVGPaint(const SkSVGIRI& iri, const SkSVGColor& fallback_color) in SkSVGPaint()
209 const SkSVGColor& color() const { in color()
219 SkSVGColor fColor;
DSkSVGNode.h143 SVG_PRES_ATTR(StopColor , SkSVGColor , false)
145 SVG_PRES_ATTR(FloodColor , SkSVGColor , false)
147 SVG_PRES_ATTR(LightingColor , SkSVGColor , false)
DSkSVGRenderContext.h128 SkSVGColorType resolveSvgColor(const SkSVGColor&) const;