OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:yOrientationShift
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextLayoutEngineBaseline.h
43
float calculateGlyphAdvanceAndOrientation(bool isVerticalText, SVGTextMetrics&, float angle, float& xOrientationShift, float&
yOrientationShift
) const;
SVGTextLayoutEngineBaseline.cpp
186
float SVGTextLayoutEngineBaseline::calculateGlyphAdvanceAndOrientation(bool isVerticalText, SVGTextMetrics& metrics, float angle, float& xOrientationShift, float&
yOrientationShift
) const
205
yOrientationShift
= fontMetrics.floatAscent();
209
yOrientationShift
= metrics.width();
222
yOrientationShift
= -metrics.width();
225
yOrientationShift
= -fontMetrics.floatAscent();
SVGTextLayoutEngine.cpp
496
float
yOrientationShift
= 0;
497
float glyphAdvance = baselineLayout.calculateGlyphAdvanceAndOrientation(m_isVerticalText, visualMetrics, orientationAngle, xOrientationShift,
yOrientationShift
);
524
yOrientationShift
-= scaledGlyphAdvance / 2;
535
yOrientationShift
+= m_dy - baselineShift;
606
if (xOrientationShift ||
yOrientationShift
)
607
m_currentTextFragment.transform.translate(xOrientationShift,
yOrientationShift
);
Completed in 159 milliseconds