| Index: sky/engine/core/rendering/RenderView.cpp
|
| diff --git a/sky/engine/core/rendering/RenderView.cpp b/sky/engine/core/rendering/RenderView.cpp
|
| index 237b5f927c0a37c1ebd33cc4a958ce6b8ccae808..c7b4805438f0e4974eb02235ece5e2b75fd34de0 100644
|
| --- a/sky/engine/core/rendering/RenderView.cpp
|
| +++ b/sky/engine/core/rendering/RenderView.cpp
|
| @@ -191,10 +191,8 @@ void RenderView::layout()
|
| clearNeedsLayout();
|
| }
|
|
|
| -void RenderView::mapLocalToContainer(const RenderLayerModelObject* paintInvalidationContainer, TransformState& transformState, MapCoordinatesFlags mode, bool* wasFixed, const PaintInvalidationState* paintInvalidationState) const
|
| +void RenderView::mapLocalToContainer(const RenderLayerModelObject* paintInvalidationContainer, TransformState& transformState, MapCoordinatesFlags mode, const PaintInvalidationState* paintInvalidationState) const
|
| {
|
| - ASSERT_UNUSED(wasFixed, !wasFixed || *wasFixed == static_cast<bool>(mode & IsFixed));
|
| -
|
| if (!paintInvalidationContainer && mode & UseTransforms && shouldUseTransformFromContainer(0)) {
|
| TransformationMatrix t;
|
| getTransformFromContainer(0, LayoutSize(), t);
|
| @@ -369,10 +367,8 @@ void RenderView::absoluteRects(Vector<IntRect>& rects, const LayoutPoint& accumu
|
| rects.append(pixelSnappedIntRect(accumulatedOffset, layer()->size()));
|
| }
|
|
|
| -void RenderView::absoluteQuads(Vector<FloatQuad>& quads, bool* wasFixed) const
|
| +void RenderView::absoluteQuads(Vector<FloatQuad>& quads) const
|
| {
|
| - if (wasFixed)
|
| - *wasFixed = false;
|
| quads.append(FloatRect(FloatPoint(), layer()->size()));
|
| }
|
|
|
|
|