Home
last modified time | relevance | path

Searched defs:SkPackedGlyphID (Results 1 – 3 of 3) sorted by relevance

/external/skia/src/core/
DSkGlyph.h24 struct SkPackedGlyphID { struct
47 static constexpr SkScalar kSubpixelRound = 1.f / (1u << (SkPackedGlyphID::kSubPixelPosLen + 1)); argument
52 constexpr explicit SkPackedGlyphID(SkGlyphID glyphID) in SkPackedGlyphID() argument
55 constexpr SkPackedGlyphID(SkGlyphID glyphID, SkFixed x, SkFixed y) in SkPackedGlyphID() argument
58 constexpr SkPackedGlyphID(SkGlyphID glyphID, uint32_t x, uint32_t y) in SkPackedGlyphID() argument
61 SkPackedGlyphID(SkGlyphID glyphID, SkPoint pt, SkIPoint mask) in SkPackedGlyphID() function
64 constexpr explicit SkPackedGlyphID(uint32_t v) : fID{v & kMaskAll} { } in SkPackedGlyphID() function
65 constexpr SkPackedGlyphID() : fID{kImpossibleID} {} in SkPackedGlyphID() function
77 SkGlyphID glyphID() const { in glyphID()
81 uint32_t value() const { in value()
[all …]
DSkGlyphBuffer.h118 operator SkPackedGlyphID() const { return this->packedID(); } in SkPackedGlyphID() function
/external/skqp/src/core/
DSkGlyph.h117 struct SkPackedGlyphID : public SkPackedID { struct
118 SkPackedGlyphID(SkGlyphID code) : SkPackedID(code) { } in SkPackedGlyphID() function
119 SkPackedGlyphID(SkGlyphID code, SkFixed x, SkFixed y) : SkPackedID(code, x, y) { } in SkPackedGlyphID() argument
120 SkPackedGlyphID(SkGlyphID code, SkIPoint pt) : SkPackedID(code, pt.x(), pt.y()) { } in SkPackedGlyphID() argument
140 constexpr explicit SkGlyph(SkPackedGlyphID id) : fID{id} {} in SkGlyph() argument