Searched refs:mapRect (Results 1 - 25 of 142) sorted by relevance

123456

/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DFilter.h56 m_absoluteFilterRegion = m_absoluteTransform.mapRect(m_filterRegion);
59 FloatRect mapLocalRectToAbsoluteRect(const FloatRect& rect) const { return m_absoluteTransform.mapRect(rect); }
60 FloatRect mapAbsoluteRectToLocalRect(const FloatRect& rect) const { return m_inverseTransform.mapRect(rect); }
80 m_absoluteFilterRegion = m_absoluteTransform.mapRect(m_filterRegion);
H A DFEOffset.h41 virtual FloatRect mapRect(const FloatRect&, bool forward = true) OVERRIDE FINAL;
H A DFEGaussianBlur.h41 virtual FloatRect mapRect(const FloatRect&, bool forward = true) OVERRIDE FINAL;
H A DFEMorphology.h51 virtual FloatRect mapRect(const FloatRect&, bool forward = true) OVERRIDE FINAL;
H A DFEGaussianBlur.cpp108 FloatRect FEGaussianBlur::mapRect(const FloatRect& rect, bool) function in class:blink::FEGaussianBlur
126 FloatRect inputRect = input->determineAbsolutePaintRect(mapRect(requestedRect, false));
127 FloatRect outputRect = mapRect(inputRect, true);
H A DFEDropShadow.h52 virtual FloatRect mapRect(const FloatRect&, bool forward = true) OVERRIDE FINAL;
H A DFilterEffect.h126 virtual FloatRect mapRect(const FloatRect& rect, bool forward = true) { return rect; } function in class:blink::FilterEffect
128 // use mapRect above for that, because that is also used for calculating effect
133 return mapRect(rect, forward);
137 // This is a recursive version of a backwards mapRect(), which also takes
H A DFEOffset.cpp68 FloatRect FEOffset::mapRect(const FloatRect& rect, bool forward) function in class:blink::FEOffset
/external/chromium_org/third_party/skia/src/gpu/
H A DGrPathRenderer.cpp23 matrix.mapRect(bounds);
/external/skia/src/gpu/
H A DGrPathRenderer.cpp23 matrix.mapRect(bounds);
/external/chromium_org/skia/ext/
H A Dbitmap_platform_device_mac_unittest.cc42 transform.mapRect(&clip_rect);
62 transform.mapRect(&clip_rect);
/external/skia/src/effects/
H A DSkTileImageFilter.cpp30 ctx.ctm().mapRect(&dstRect, fDstRect);
40 ctx.ctm().mapRect(&srcRect, fSrcRect);
81 ctm.mapRect(&srcRect, fSrcRect);
H A DSkMatrixImageFilter.cpp69 matrix.mapRect(&dstRect, srcRect);
101 matrix.mapRect(dst, bounds);
117 matrix.mapRect(&floatBounds, SkRect::Make(src));
/external/chromium_org/third_party/skia/src/core/
H A DSkDeviceLooper.h49 void mapRect(SkRect* dst, const SkRect& src) const;
54 * Each time this returns true, it is safe to call mapRect() and
58 * When next() returns false, the list of chunks is done, and mapRect()
H A DSkDrawLooper.cpp50 canvas.getTotalMatrix().mapRect(&r);
/external/skia/src/core/
H A DSkDeviceLooper.h49 void mapRect(SkRect* dst, const SkRect& src) const;
54 * Each time this returns true, it is safe to call mapRect() and
58 * When next() returns false, the list of chunks is done, and mapRect()
H A DSkDrawLooper.cpp50 canvas.getTotalMatrix().mapRect(&r);
/external/chromium_org/third_party/skia/src/effects/
H A DSkMatrixImageFilter.cpp81 matrix.mapRect(&dstRect, srcRect);
113 matrix.mapRect(dst, bounds);
129 matrix.mapRect(&floatBounds, SkRect::Make(src));
H A DSkTileImageFilter.cpp38 ctx.ctm().mapRect(&dstRect, fDstRect);
48 ctx.ctm().mapRect(&srcRect, fSrcRect);
89 ctm.mapRect(&srcRect, fSrcRect);
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGRenderingContext.h85 return enclosingIntRect(absoluteTransform.mapRect(targetRect));
H A DRenderSVGContainer.cpp151 IntRect paintRectInParent = enclosingIntRect(localToParentTransform().mapRect(paintInvalidationRect));
159 LayoutRect paintRectInParent = LayoutRect(localToParentTransform().mapRect(paintInvalidationRectInLocalCoordinates()));
H A DRenderSVGResourceMarker.cpp84 coordinates = localToParentTransform().mapRect(coordinates);
86 return markerTransformation.mapRect(coordinates);
H A DRenderSVGResourceMasker.cpp160 m_maskContentBoundaries.unite(renderer->localToParentTransform().mapRect(renderer->paintInvalidationRectInLocalCoordinates()));
184 maskRect = transform.mapRect(maskRect);
/external/chromium_org/third_party/WebKit/Source/platform/transforms/
H A DAffineTransform.h67 IntRect mapRect(const IntRect&) const;
69 FloatRect mapRect(const FloatRect&) const;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DPaintInfo.h103 rect = localToAncestorTransform.inverse().mapRect(rect);

Completed in 322 milliseconds

123456