Home
last modified time | relevance | path

Searched refs:transformState (Results 1 – 14 of 14) sorted by relevance

/external/webkit/Source/WebCore/rendering/svg/
DRenderSVGModelObject.cpp56 …delObject* repaintContainer, bool fixed , bool useTransforms, TransformState& transformState) const in mapLocalToContainer()
58 …VGRenderSupport::mapLocalToContainer(this, repaintContainer, fixed, useTransforms, transformState); in mapLocalToContainer()
DRenderSVGInline.cpp80 …odelObject* repaintContainer, bool useTransforms, bool fixed, TransformState& transformState) const in mapLocalToContainer()
82 …VGRenderSupport::mapLocalToContainer(this, repaintContainer, useTransforms, fixed, transformState); in mapLocalToContainer()
DRenderSVGForeignObject.cpp163 …odelObject* repaintContainer, bool fixed, bool useTransforms, TransformState& transformState) const in mapLocalToContainer()
168 …VGRenderSupport::mapLocalToContainer(this, repaintContainer, fixed, useTransforms, transformState); in mapLocalToContainer()
DRenderSVGRoot.cpp297 …delObject* repaintContainer, bool fixed , bool useTransforms, TransformState& transformState) const in mapLocalToContainer()
303 transformState.applyTransform(localToBorderBoxTransform()); in mapLocalToContainer()
304 RenderBox::mapLocalToContainer(repaintContainer, fixed, useTransforms, transformState); in mapLocalToContainer()
DSVGRenderSupport.cpp72 …rBoxModelObject* repaintContainer, bool fixed , bool useTransforms, TransformState& transformState) in mapLocalToContainer() argument
76 transformState.applyTransform(object->localToParentTransform()); in mapLocalToContainer()
77 object->parent()->mapLocalToContainer(repaintContainer, fixed, useTransforms, transformState); in mapLocalToContainer()
DRenderSVGText.cpp95 …odelObject* repaintContainer, bool fixed, bool useTransforms, TransformState& transformState) const in mapLocalToContainer()
97 …VGRenderSupport::mapLocalToContainer(this, repaintContainer, fixed, useTransforms, transformState); in mapLocalToContainer()
/external/webkit/Source/WebCore/rendering/
DRenderObject.cpp1848 TransformState transformState(TransformState::ApplyTransformDirection, localPoint); in localToAbsolute() local
1849 mapLocalToContainer(0, fixed, useTransforms, transformState); in localToAbsolute()
1850 transformState.flatten(); in localToAbsolute()
1852 return transformState.lastPlanarPoint(); in localToAbsolute()
1857 TransformState transformState(TransformState::UnapplyInverseTransformDirection, containerPoint); in absoluteToLocal() local
1858 mapAbsoluteToLocalPoint(fixed, useTransforms, transformState); in absoluteToLocal()
1859 transformState.flatten(); in absoluteToLocal()
1861 return transformState.lastPlanarPoint(); in absoluteToLocal()
1864 …odelObject* repaintContainer, bool fixed, bool useTransforms, TransformState& transformState) const in mapLocalToContainer()
1873 IntPoint centerPoint = roundedIntPoint(transformState.mappedPoint()); in mapLocalToContainer()
[all …]
DRenderView.cpp146 …odelObject* repaintContainer, bool fixed, bool useTransforms, TransformState& transformState) const in mapLocalToContainer()
155 transformState.applyTransform(t); in mapLocalToContainer()
159 transformState.move(m_frameView->scrollOffsetForFixedPosition()); in mapLocalToContainer()
162 …View::mapAbsoluteToLocalPoint(bool fixed, bool useTransforms, TransformState& transformState) const in mapAbsoluteToLocalPoint()
165 transformState.move(-m_frameView->scrollOffsetForFixedPosition()); in mapAbsoluteToLocalPoint()
170 transformState.applyTransform(t); in mapAbsoluteToLocalPoint()
DRenderInline.cpp1119 …odelObject* repaintContainer, bool fixed, bool useTransforms, TransformState& transformState) const in mapLocalToContainer()
1130 transformState.move(offset); in mapLocalToContainer()
1140 IntPoint centerPoint = roundedIntPoint(transformState.mappedPoint()); in mapLocalToContainer()
1142transformState.move(toRenderBox(o)->flipForWritingModeIncludingColumns(roundedIntPoint(transformSt… in mapLocalToContainer()
1144 IntSize containerOffset = offsetFromContainer(o, roundedIntPoint(transformState.mappedPoint())); in mapLocalToContainer()
1150transformState.applyTransform(t, preserve3D ? TransformState::AccumulateTransform : TransformState… in mapLocalToContainer()
1152transformState.move(containerOffset.width(), containerOffset.height(), preserve3D ? TransformState… in mapLocalToContainer()
1158transformState.move(-containerOffset.width(), -containerOffset.height(), preserve3D ? TransformSta… in mapLocalToContainer()
1162 o->mapLocalToContainer(repaintContainer, fixed, useTransforms, transformState); in mapLocalToContainer()
1165 …line::mapAbsoluteToLocalPoint(bool fixed, bool useTransforms, TransformState& transformState) const in mapAbsoluteToLocalPoint()
[all …]
DRenderLayer.cpp2948 static double computeZOffset(const HitTestingTransformState& transformState) in scrollTo() argument
2951 if (transformState.m_accumulatedTransform.isAffine()) in scrollTo()
2955 FloatPoint targetPoint = transformState.mappedPoint(); in scrollTo()
2958 …FloatPoint3D backmappedPoint = transformState.m_accumulatedTransform.mapPoint(FloatPoint3D(targetP… in scrollTo()
2966 RefPtr<HitTestingTransformState> transformState; in scrollTo() local
2971 transformState = HitTestingTransformState::create(*containerTransformState); in scrollTo()
2976 transformState = HitTestingTransformState::create(hitTestPoint, FloatQuad(hitTestRect)); in scrollTo()
2984transformState->applyTransform(containerTransform, HitTestingTransformState::AccumulateTransform); in scrollTo()
2986 transformState->translate(offsetX, offsetY, HitTestingTransformState::AccumulateTransform); in scrollTo()
2989 return transformState; in scrollTo()
[all …]
DRenderLayer.h532 … const HitTestingTransformState* transformState = 0, double* zOffset = 0);
535 … const HitTestingTransformState* transformState, double* zOffsetForDescendants, double* zOffset,
539 … const HitTestingTransformState* transformState, double* zOffset);
542 … const HitTestingTransformState* transformState, double* zOffset,
DRenderBox.cpp1197 …odelObject* repaintContainer, bool fixed, bool useTransforms, TransformState& transformState) const in mapLocalToContainer()
1209 transformState.move(offset); in mapLocalToContainer()
1228 IntSize containerOffset = offsetFromContainer(o, roundedIntPoint(transformState.mappedPoint())); in mapLocalToContainer()
1234transformState.applyTransform(t, preserve3D ? TransformState::AccumulateTransform : TransformState… in mapLocalToContainer()
1236transformState.move(containerOffset.width(), containerOffset.height(), preserve3D ? TransformState… in mapLocalToContainer()
1242transformState.move(-containerOffset.width(), -containerOffset.height(), preserve3D ? TransformSta… in mapLocalToContainer()
1246 o->mapLocalToContainer(repaintContainer, fixed, useTransforms, transformState); in mapLocalToContainer()
1249 …rBox::mapAbsoluteToLocalPoint(bool fixed, bool useTransforms, TransformState& transformState) const in mapAbsoluteToLocalPoint()
1267 o->mapAbsoluteToLocalPoint(fixed, useTransforms, transformState); in mapAbsoluteToLocalPoint()
1275transformState.applyTransform(t, preserve3D ? TransformState::AccumulateTransform : TransformState… in mapAbsoluteToLocalPoint()
[all …]
DRenderBlock.cpp2774 TransformState transformState(TransformState::ApplyTransformDirection, FloatPoint()); in selectionGapRectsForRepaint() local
2775 mapLocalToContainer(repaintContainer, false, false, transformState); in selectionGapRectsForRepaint()
2776 IntPoint offsetFromRepaintContainer = roundedIntPoint(transformState.mappedPoint()); in selectionGapRectsForRepaint()
/external/webkit/Source/WebCore/
DChangeLog-2010-12-06114710 …(WebCore::RenderSVGText::mapLocalToContainer): Remove hack, which moved the transformState by x()/…