Searched refs:spacingAndGlyphsTransform (Results 1 - 1 of 1) sorted by relevance

/macosx-10.9.5/WebCore-7537.78.1/rendering/svg/
H A DSVGTextChunkBuilder.cpp186 AffineTransform spacingAndGlyphsTransform; local
197 buildSpacingAndGlyphsTransform(isVerticalText, textLengthScale, fragments.first(), spacingAndGlyphsTransform);
200 m_textBoxTransformations.set(textBox, spacingAndGlyphsTransform);
252 void SVGTextChunkBuilder::buildSpacingAndGlyphsTransform(bool isVerticalText, float scale, const SVGTextFragment& fragment, AffineTransform& spacingAndGlyphsTransform) argument
254 spacingAndGlyphsTransform.translate(fragment.x, fragment.y);
257 spacingAndGlyphsTransform.scaleNonUniform(1, scale);
259 spacingAndGlyphsTransform.scaleNonUniform(scale, 1);
261 spacingAndGlyphsTransform.translate(-fragment.x, -fragment.y);

Completed in 68 milliseconds