Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DRenderSVGResourceMasker.cpp117 AffineTransform contentTransformation; in drawMaskForRenderer() local
120 contentTransformation.translate(targetBoundingBox.x(), targetBoundingBox.y()); in drawMaskForRenderer()
121contentTransformation.scaleNonUniform(targetBoundingBox.width(), targetBoundingBox.height()); in drawMaskForRenderer()
122 context->concatCTM(contentTransformation); in drawMaskForRenderer()
126 m_maskContentDisplayList = asDisplayList(context, contentTransformation); in drawMaskForRenderer()
DRenderSVGResourceClipper.cpp240 AffineTransform contentTransformation; in drawClipMaskContent() local
243 contentTransformation.translate(targetBoundingBox.x(), targetBoundingBox.y()); in drawClipMaskContent()
244contentTransformation.scaleNonUniform(targetBoundingBox.width(), targetBoundingBox.height()); in drawClipMaskContent()
245 context->concatCTM(contentTransformation); in drawClipMaskContent()
249 m_clipContentDisplayList = asDisplayList(context, contentTransformation); in drawClipMaskContent()
256 const AffineTransform& contentTransformation) in asDisplayList() argument
300 SVGRenderingContext::renderSubtree(context, renderer, contentTransformation); in asDisplayList()
DSVGRenderingContext.cpp249 AffineTransform& contentTransformation = currentContentTransformation(); in renderSubtree() local
250 AffineTransform savedContentTransformation = contentTransformation; in renderSubtree()
251 contentTransformation = subtreeContentTransformation * contentTransformation; in renderSubtree()
256 contentTransformation = savedContentTransformation; in renderSubtree()
DRenderSVGResourceMarker.cpp154 …esourceMarker::markerContentTransformation(const AffineTransform& contentTransformation, const Flo… in markerContentTransformation() argument
159 AffineTransform transformation = contentTransformation; in markerContentTransformation()
DRenderSVGResourcePattern.cpp263 AffineTransform contentTransformation; in createTileImage() local
265 contentTransformation = tileImageTransform; in createTileImage()
273 … SVGRenderingContext::renderSubtree(tileImage->context(), node->renderer(), contentTransformation); in createTileImage()
DRenderSVGResourceMarker.h68 …AffineTransform markerContentTransformation(const AffineTransform& contentTransformation, const Fl…
/external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/
DSVGFEImage.cpp134 AffineTransform contentTransformation; in applySoftware() local
135 SVGRenderingContext::renderSubtree(resultImage->context(), renderer, contentTransformation); in applySoftware()