Home
last modified time | relevance | path

Searched refs:fFontFeatures (Results 1 – 2 of 2) sorted by relevance

/third_party/skia/modules/skparagraph/src/
DTextStyle.cpp22 fFontFeatures = other.fFontFeatures; in TextStyle()
80 if (fFontFeatures.size() != other.fFontFeatures.size()) { in equals()
83 for (size_t i = 0; i < fFontFeatures.size(); ++i) { in equals()
84 if (!(fFontFeatures[i] == other.fFontFeatures[i])) { in equals()
97 fFontFeatures == that.fFontFeatures && in equalsByFonts()
/third_party/skia/modules/skparagraph/include/
DTextStyle.h204 size_t getFontFeatureNumber() const { return fFontFeatures.size(); } in getFontFeatureNumber()
205 std::vector<FontFeature> getFontFeatures() const { return fFontFeatures; } in getFontFeatures()
207 { fFontFeatures.emplace_back(fontFeature, value); } in addFontFeature()
208 void resetFontFeatures() { fFontFeatures.clear(); } in resetFontFeatures()
292 std::vector<FontFeature> fFontFeatures; variable