Home
last modified time | relevance | path

Searched refs:nextGlyph (Results 1 – 1 of 1) sorted by relevance

/external/webkit/WebCore/platform/graphics/
DFontFastPath.cpp301 int nextGlyph = 0; in drawGlyphBuffer() local
302 while (nextGlyph < glyphBuffer.size()) { in drawGlyphBuffer()
303 const SimpleFontData* nextFontData = glyphBuffer.fontDataAt(nextGlyph); in drawGlyphBuffer()
304 FloatSize nextOffset = glyphBuffer.offsetAt(nextGlyph); in drawGlyphBuffer()
306 drawGlyphs(context, fontData, glyphBuffer, lastFrom, nextGlyph - lastFrom, startPoint); in drawGlyphBuffer()
308 lastFrom = nextGlyph; in drawGlyphBuffer()
313 nextX += glyphBuffer.advanceAt(nextGlyph); in drawGlyphBuffer()
314 nextGlyph++; in drawGlyphBuffer()
317 drawGlyphs(context, fontData, glyphBuffer, lastFrom, nextGlyph - lastFrom, startPoint); in drawGlyphBuffer()