| Index: sky/engine/core/rendering/RenderInline.cpp
|
| diff --git a/sky/engine/core/rendering/RenderInline.cpp b/sky/engine/core/rendering/RenderInline.cpp
|
| index 0c35897fe9a935772cf7d14714f3a9085655cbb4..f8ca67ef0430db5694c82cd3fd5dddf43493db85 100644
|
| --- a/sky/engine/core/rendering/RenderInline.cpp
|
| +++ b/sky/engine/core/rendering/RenderInline.cpp
|
| @@ -674,13 +674,13 @@ private:
|
|
|
| } // unnamed namespace
|
|
|
| -void RenderInline::absoluteQuads(Vector<FloatQuad>& quads, bool* wasFixed) const
|
| +void RenderInline::absoluteQuads(Vector<FloatQuad>& quads) const
|
| {
|
| AbsoluteQuadsGeneratorContext context(this, quads);
|
| generateLineBoxRects(context);
|
|
|
| if (continuation())
|
| - continuation()->absoluteQuads(quads, wasFixed);
|
| + continuation()->absoluteQuads(quads);
|
| }
|
|
|
| LayoutUnit RenderInline::offsetLeft() const
|
| @@ -1125,7 +1125,7 @@ LayoutSize RenderInline::offsetFromContainer(const RenderObject* container, cons
|
| return offset;
|
| }
|
|
|
| -void RenderInline::mapLocalToContainer(const RenderLayerModelObject* paintInvalidationContainer, TransformState& transformState, MapCoordinatesFlags mode, bool* wasFixed, const PaintInvalidationState* paintInvalidationState) const
|
| +void RenderInline::mapLocalToContainer(const RenderLayerModelObject* paintInvalidationContainer, TransformState& transformState, MapCoordinatesFlags mode, const PaintInvalidationState* paintInvalidationState) const
|
| {
|
| if (paintInvalidationContainer == this)
|
| return;
|
| @@ -1169,7 +1169,7 @@ void RenderInline::mapLocalToContainer(const RenderLayerModelObject* paintInvali
|
| return;
|
| }
|
|
|
| - o->mapLocalToContainer(paintInvalidationContainer, transformState, mode, wasFixed, paintInvalidationState);
|
| + o->mapLocalToContainer(paintInvalidationContainer, transformState, mode, paintInvalidationState);
|
| }
|
|
|
| void RenderInline::childBecameNonInline(RenderObject* child)
|
|
|