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 41 #define GET_GLYPH(text) nextGlyph((const uint16_t**) &text)
44 static glyph_t nextGlyph(const uint16_t** srcPtr) {
  /external/webkit/Source/WebCore/platform/graphics/
FontFastPath.cpp 386 int nextGlyph = 0;
387 while (nextGlyph < glyphBuffer.size()) {
388 const SimpleFontData* nextFontData = glyphBuffer.fontDataAt(nextGlyph);
389 FloatSize nextOffset = glyphBuffer.offsetAt(nextGlyph);
391 drawGlyphs(context, fontData, glyphBuffer, lastFrom, nextGlyph - lastFrom, startPoint);
393 lastFrom = nextGlyph;
398 nextX += glyphBuffer.advanceAt(nextGlyph);
399 nextGlyph++;
402 drawGlyphs(context, fontData, glyphBuffer, lastFrom, nextGlyph - lastFrom, startPoint);

Completed in 1124 milliseconds