Searched defs:textRunPaintInfo (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DTextPainter.cpp182 void TextPainter::paintInternalRun(TextRunPaintInfo& textRunPaintInfo, int from, int to, TextBlobPtr* cachedTextBlob) argument
184 textRunPaintInfo.from = from;
185 textRunPaintInfo.to = to;
188 m_graphicsContext->drawEmphasisMarks(m_font, textRunPaintInfo, m_emphasisMark, m_textOrigin + IntSize(0, m_emphasisMarkOffset));
199 textBlob = m_font.buildTextBlob(textRunPaintInfo, m_textOrigin, m_graphicsContext->couldUseLCDRenderedText());
204 m_graphicsContext->drawText(m_font, textRunPaintInfo, m_textOrigin);
211 TextRunPaintInfo textRunPaintInfo(m_run);
212 textRunPaintInfo.bounds = m_textBounds;
214 paintInternalRun<Step>(textRunPaintInfo, startOffset, endOffset, cachedTextBlob);
217 paintInternalRun<Step>(textRunPaintInfo,
[all...]

Completed in 160 milliseconds