Searched defs:SkSVGSpreadMethod (Results 1 - 1 of 1) sorted by relevance

/external/skia/experimental/svg/model/
H A DSkSVGTypes.h198 class SkSVGSpreadMethod { class
207 constexpr SkSVGSpreadMethod() : fType(Type::kPad) {} function in class:SkSVGSpreadMethod
208 constexpr explicit SkSVGSpreadMethod(Type t) : fType(t) {} function in class:SkSVGSpreadMethod
210 SkSVGSpreadMethod(const SkSVGSpreadMethod&) = default;
211 SkSVGSpreadMethod& operator=(const SkSVGSpreadMethod&) = default;
213 bool operator==(const SkSVGSpreadMethod& other) const { return fType == other.fType; }
214 bool operator!=(const SkSVGSpreadMethod& other) const { return !(*this == other); }

Completed in 49 milliseconds