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/core/platform/graphics/
FontFastPath.cpp 457 int nextGlyph = 1;
461 while (nextGlyph < glyphBuffer.size()) {
462 const SimpleFontData* nextFontData = glyphBuffer.fontDataAt(nextGlyph);
467 renderingContext->drawSVGGlyphs(context, runInfo.run, fontData, glyphBuffer, lastFrom, nextGlyph - lastFrom, startPoint);
470 drawGlyphs(context, fontData, glyphBuffer, lastFrom, nextGlyph - lastFrom, startPoint, runInfo.bounds);
472 lastFrom = nextGlyph;
476 nextX += glyphBuffer.advanceAt(nextGlyph);
477 nextGlyph++;
482 renderingContext->drawSVGGlyphs(context, runInfo.run, fontData, glyphBuffer, lastFrom, nextGlyph - lastFrom, startPoint);
485 drawGlyphs(context, fontData, glyphBuffer, lastFrom, nextGlyph - lastFrom, startPoint, runInfo.bounds)
    [all...]

Completed in 427 milliseconds