Searched refs:CachedGlyphInfo (Results 1 – 2 of 2) sorted by relevance
/frameworks/rs/ |
D | rsFont.h | 91 struct CachedGlyphInfo struct 127 DefaultKeyedVector<uint32_t, CachedGlyphInfo* > mCachedGlyphs; argument 128 CachedGlyphInfo* getCachedUTFChar(int32_t utfChar); 130 CachedGlyphInfo *cacheGlyph(uint32_t glyph); 131 void updateGlyphCache(CachedGlyphInfo *glyph); 132 void measureCachedGlyph(CachedGlyphInfo *glyph, int32_t x, int32_t y, Rect *bounds); 133 void drawCachedGlyph(CachedGlyphInfo *glyph, int32_t x, int32_t y); 134 void drawCachedGlyph(CachedGlyphInfo *glyph, int32_t x, int32_t y,
|
D | rsFont.cpp | 92 void Font::drawCachedGlyph(CachedGlyphInfo *glyph, int32_t x, int32_t y) { in drawCachedGlyph() 112 void Font::drawCachedGlyph(CachedGlyphInfo* glyph, int32_t x, int32_t y, in drawCachedGlyph() 138 void Font::measureCachedGlyph(CachedGlyphInfo *glyph, int32_t x, int32_t y, Rect *bounds) { in measureCachedGlyph() 198 CachedGlyphInfo *cachedGlyph = getCachedUTFChar(utfChar); in renderUTF() 224 Font::CachedGlyphInfo* Font::getCachedUTFChar(int32_t utfChar) { in getCachedUTFChar() 226 CachedGlyphInfo *cachedGlyph = mCachedGlyphs.valueFor((uint32_t)utfChar); in getCachedUTFChar() 238 void Font::updateGlyphCache(CachedGlyphInfo *glyph) { in updateGlyphCache() 283 Font::CachedGlyphInfo *Font::cacheGlyph(uint32_t glyph) { in cacheGlyph() 284 CachedGlyphInfo *newGlyph = new CachedGlyphInfo(); in cacheGlyph() 327 CachedGlyphInfo *glyph = mCachedGlyphs.valueAt(i); in ~Font()
|