OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:targetBoundingBox
(Results
1 - 7
of
7
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/
SVGFilter.cpp
28
SVGFilter::SVGFilter(const AffineTransform& absoluteTransform, const FloatRect& absoluteSourceDrawingRegion, const FloatRect&
targetBoundingBox
, const FloatRect& filterRegion, bool effectBBoxMode)
31
, m_targetBoundingBox(
targetBoundingBox
)
52
PassRefPtr<SVGFilter> SVGFilter::create(const AffineTransform& absoluteTransform, const FloatRect& absoluteSourceDrawingRegion, const FloatRect&
targetBoundingBox
, const FloatRect& filterRegion, bool effectBBoxMode)
54
return adoptRef(new SVGFilter(absoluteTransform, absoluteSourceDrawingRegion,
targetBoundingBox
, filterRegion, effectBBoxMode));
SVGFilter.h
43
FloatRect
targetBoundingBox
() const { return m_targetBoundingBox; }
46
SVGFilter(const AffineTransform& absoluteTransform, const FloatRect& absoluteSourceDrawingRegion, const FloatRect&
targetBoundingBox
, const FloatRect& filterRegion, bool effectBBoxMode);
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourceMasker.cpp
113
void RenderSVGResourceMasker::drawMaskForRenderer(GraphicsContext* context, const FloatRect&
targetBoundingBox
)
120
contentTransformation.translate(
targetBoundingBox
.x(),
targetBoundingBox
.y());
121
contentTransformation.scaleNonUniform(
targetBoundingBox
.width(),
targetBoundingBox
.height());
RenderSVGResourceClipper.cpp
147
bool RenderSVGResourceClipper::applyClippingToContext(RenderObject* target, const FloatRect&
targetBoundingBox
,
171
if (tryPathOnlyClipping(context, animatedLocalTransform,
targetBoundingBox
)) {
190
if (!clipPathClipper->applyClippingToContext(this,
targetBoundingBox
, repaintRect, context, clipPathClipperContext)) {
201
drawClipMaskContent(context,
targetBoundingBox
);
236
void RenderSVGResourceClipper::drawClipMaskContent(GraphicsContext* context, const FloatRect&
targetBoundingBox
)
243
contentTransformation.translate(
targetBoundingBox
.x(),
targetBoundingBox
.y());
244
contentTransformation.scaleNonUniform(
targetBoundingBox
.width(),
targetBoundingBox
.height());
RenderSVGResourceMasker.h
59
void drawMaskForRenderer(GraphicsContext*, const FloatRect&
targetBoundingBox
);
RenderSVGResourceClipper.h
78
void drawClipMaskContent(GraphicsContext*, const FloatRect&
targetBoundingBox
);
RenderSVGResourceFilter.cpp
76
FloatRect
targetBoundingBox
= filter->
targetBoundingBox
();
96
effect->setEffectBoundaries(SVGLengthContext::resolveRectangle<SVGFilterPrimitiveStandardAttributes>(effectElement, filterElement->primitiveUnitsCurrentValue(),
targetBoundingBox
));
162
FloatRect
targetBoundingBox
= object->objectBoundingBox();
165
filterData->boundaries = SVGLengthContext::resolveRectangle<SVGFilterElement>(filterElement, filterElement->filterUnitsCurrentValue(),
targetBoundingBox
);
186
filterData->filter = SVGFilter::create(filterData->shearFreeAbsoluteTransform, absoluteDrawingRegion,
targetBoundingBox
, filterData->boundaries, primitiveBoundingBoxMode);
Completed in 133 milliseconds