HomeSort by relevance Sort by last modified time
    Searched defs:viewBoxToViewTransform (Results 1 - 3 of 3) sorted by null

  /external/webkit/Source/WebCore/svg/
SVGFitToViewBox.cpp 83 AffineTransform SVGFitToViewBox::viewBoxToViewTransform(const FloatRect& viewBoxRect, const SVGPreserveAspectRatio& preserveAspectRatio, float viewWidth, float viewHeight)
SVGMarkerElement.cpp 76 AffineTransform SVGMarkerElement::viewBoxToViewTransform(float viewWidth, float viewHeight) const
78 return SVGFitToViewBox::viewBoxToViewTransform(viewBox(), preserveAspectRatio(), viewWidth, viewHeight);
SVGSVGElement.cpp 137 return viewBoxToViewTransform(viewRectangle.width(), viewRectangle.height()).mapRect(viewRectangle);
490 viewBoxTransform = viewBoxToViewTransform(width().value(this), height().value(this));
501 // Be careful here! localToAbsolute() includes the x/y offset coming from the viewBoxToViewTransform(), because
503 // also takes the viewBoxToViewTransform() into account, so we have to subtract it here (original cause of bug #27183)
589 AffineTransform SVGSVGElement::viewBoxToViewTransform(float viewWidth, float viewHeight) const
598 AffineTransform ctm = SVGFitToViewBox::viewBoxToViewTransform(viewBoxRect, preserveAspectRatio(), viewWidth, viewHeight);

Completed in 188 milliseconds