OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:contentTransformation
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/
SVGFEImage.cpp
134
AffineTransform
contentTransformation
;
135
SVGRenderingContext::renderSubtree(resultImage->context(), renderer,
contentTransformation
);
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourceMasker.cpp
117
AffineTransform
contentTransformation
;
120
contentTransformation
.translate(targetBoundingBox.x(), targetBoundingBox.y());
121
contentTransformation
.scaleNonUniform(targetBoundingBox.width(), targetBoundingBox.height());
122
context->concatCTM(
contentTransformation
);
126
m_maskContentDisplayList = asDisplayList(context,
contentTransformation
);
RenderSVGResourcePattern.cpp
263
AffineTransform
contentTransformation
;
265
contentTransformation
= tileImageTransform;
273
SVGRenderingContext::renderSubtree(tileImage->context(), node->renderer(),
contentTransformation
);
RenderSVGResourceClipper.cpp
240
AffineTransform
contentTransformation
;
243
contentTransformation
.translate(targetBoundingBox.x(), targetBoundingBox.y());
244
contentTransformation
.scaleNonUniform(targetBoundingBox.width(), targetBoundingBox.height());
245
context->concatCTM(
contentTransformation
);
249
m_clipContentDisplayList = asDisplayList(context,
contentTransformation
);
256
const AffineTransform&
contentTransformation
)
300
SVGRenderingContext::renderSubtree(context, renderer,
contentTransformation
);
SVGRenderingContext.cpp
249
AffineTransform&
contentTransformation
= currentContentTransformation();
250
AffineTransform savedContentTransformation =
contentTransformation
;
251
contentTransformation
= subtreeContentTransformation *
contentTransformation
;
256
contentTransformation
= savedContentTransformation;
Completed in 33 milliseconds