Searched refs:fValue (Results 1 – 2 of 2) sorted by relevance
70 constexpr FontStyle(int weight, int width, Slant slant) : fValue( in FontStyle()79 return fValue == rhs.fValue;82 int GetWeight() const { return fValue & 0xFFFF; } in GetWeight()83 int GetWidth() const { return (fValue >> BIT16) & 0xFF; } in GetWidth()84 Slant GetSlant() const { return (Slant)((fValue >> BIT24) & 0xFF); } in GetSlant()87 uint32_t fValue;
76 float fValue; /**< Single-precision floating point number */ member