Searched refs:nextGlyph (Results 1 – 1 of 1) sorted by relevance
/external/webkit/WebCore/platform/graphics/ |
D | FontFastPath.cpp | 298 int nextGlyph = 0; in drawGlyphBuffer() local 299 while (nextGlyph < glyphBuffer.size()) { in drawGlyphBuffer() 300 const SimpleFontData* nextFontData = glyphBuffer.fontDataAt(nextGlyph); in drawGlyphBuffer() 301 FloatSize nextOffset = glyphBuffer.offsetAt(nextGlyph); in drawGlyphBuffer() 303 drawGlyphs(context, fontData, glyphBuffer, lastFrom, nextGlyph - lastFrom, startPoint); in drawGlyphBuffer() 305 lastFrom = nextGlyph; in drawGlyphBuffer() 310 nextX += glyphBuffer.advanceAt(nextGlyph); in drawGlyphBuffer() 311 nextGlyph++; in drawGlyphBuffer() 314 drawGlyphs(context, fontData, glyphBuffer, lastFrom, nextGlyph - lastFrom, startPoint); in drawGlyphBuffer()
|