HomeSort by relevance Sort by last modified time
    Searched refs:nextGlyph (Results 1 - 2 of 2) sorted by null

  /frameworks/base/libs/hwui/font/
FontUtil.h 44 #define GET_GLYPH(text) nextGlyph((const uint16_t**) &text)
47 static glyph_t nextGlyph(const uint16_t** srcPtr) {
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
Font.cpp 745 unsigned nextGlyph = 1;
752 while (nextGlyph < glyphBuffer.size()) {
753 const SimpleFontData* nextFontData = glyphBuffer.fontDataAt(nextGlyph);
758 renderingContext->drawSVGGlyphs(context, runInfo.run, fontData, glyphBuffer, lastFrom, nextGlyph - lastFrom, startPoint);
761 drawGlyphs(context, fontData, glyphBuffer, lastFrom, nextGlyph - lastFrom, startPoint, runInfo.bounds);
763 lastFrom = nextGlyph;
767 nextPoint += glyphBuffer.advanceAt(nextGlyph);
768 widthSoFar += glyphBuffer.advanceAt(nextGlyph).width();
769 nextGlyph++;
774 renderingContext->drawSVGGlyphs(context, runInfo.run, fontData, glyphBuffer, lastFrom, nextGlyph - lastFrom, startPoint)
    [all...]

Completed in 571 milliseconds