• Home
  • Raw
  • Download

Lines Matching refs:Font

36 Font::Font(FontRenderer* state, uint32_t fontId, float fontSize,  in Font()  function in android::uirenderer::Font
45 Font::~Font() { in ~Font()
53 void Font::invalidateTextureCache(CacheTexture* cacheTexture) { in invalidateTextureCache()
62 void Font::measureCachedGlyph(CachedGlyphInfo *glyph, int x, int y, in measureCachedGlyph()
84 void Font::drawCachedGlyph(CachedGlyphInfo* glyph, int x, int y, in drawCachedGlyph()
103 void Font::drawCachedGlyphBitmap(CachedGlyphInfo* glyph, int x, int y, in drawCachedGlyphBitmap()
131 void Font::drawCachedGlyph(CachedGlyphInfo* glyph, float x, float hOffset, float vOffset, in drawCachedGlyph()
168 CachedGlyphInfo* Font::getCachedGlyph(SkPaint* paint, glyph_t textUnit, bool precaching) { in getCachedGlyph()
186 void Font::render(SkPaint* paint, const char* text, uint32_t start, uint32_t len, in render()
197 void Font::render(SkPaint* paint, const char *text, uint32_t start, uint32_t len, in render()
203 void Font::render(SkPaint* paint, const char *text, uint32_t start, uint32_t len, in render()
253 void Font::measure(SkPaint* paint, const char* text, uint32_t start, uint32_t len, in measure()
263 void Font::precache(SkPaint* paint, const char* text, int numGlyphs) { in precache()
284 void Font::render(SkPaint* paint, const char* text, uint32_t start, uint32_t len, in render()
292 &android::uirenderer::Font::drawCachedGlyph, in render()
293 &android::uirenderer::Font::drawCachedGlyphBitmap, in render()
294 &android::uirenderer::Font::measureCachedGlyph in render()
369 void Font::updateGlyphCache(SkPaint* paint, const SkGlyph& skiaGlyph, CachedGlyphInfo* glyph, in updateGlyphCache()
408 CachedGlyphInfo* Font::cacheGlyph(SkPaint* paint, glyph_t glyph, bool precaching) { in cacheGlyph()
421 Font* Font::create(FontRenderer* state, uint32_t fontId, float fontSize, in create()
424 Vector<Font*> &activeFonts = state->mActiveFonts; in create()
427 Font* font = activeFonts[i]; in create()
436 Font* newFont = new Font(state, fontId, fontSize, flags, italicStyle, in create()