Home | History | Annotate | Download | only in core

Lines Matching refs:hinting

192 void SkPaint::setHinting(Hinting hintingLevel) {
1477 // if linear-text is on, then we force hinting to be off (since that's sort of
1479 static SkPaint::Hinting computeHinting(const SkPaint& paint) {
1480 SkPaint::Hinting h = paint.getHinting();
1983 // Include an SkScalar for hinting scale factor whether it is
2030 // now flags:16, hinting:4, textAlign:4, flatFlags:8
2032 // hinting added later. 0 in this nibble means use the default.
2096 // Skip the hinting scalar factor, which is not supported.
2104 // now flags:16, hinting:4, textAlign:4, flatFlags:8
2108 // hinting added later. 0 in this nibble means use the default.
2109 uint32_t hinting = (tmp >> 12) & 0xF;
2110 this->setHinting(0 == hinting ? kNormal_Hinting : static_cast<Hinting>(hinting-1));
2128 // Skip the hinting scalar factor, which is not supported.
2135 this->setHinting(static_cast<SkPaint::Hinting>(buffer.readUInt()));