| Index: sky/engine/core/rendering/LayerPaintingInfo.h
|
| diff --git a/sky/engine/core/rendering/LayerPaintingInfo.h b/sky/engine/core/rendering/LayerPaintingInfo.h
|
| index 54013b07848766441ceccff7c36a194a3c81ca5c..3c5bc1feac94ac3418127abfe3297c214d161510 100644
|
| --- a/sky/engine/core/rendering/LayerPaintingInfo.h
|
| +++ b/sky/engine/core/rendering/LayerPaintingInfo.h
|
| @@ -54,15 +54,13 @@ class RenderLayer;
|
|
|
| struct LayerPaintingInfo {
|
| LayerPaintingInfo(RenderLayer* inRootLayer, const LayoutRect& inDirtyRect,
|
| - const LayoutSize& inSubPixelAccumulation, RenderObject* inPaintingRoot)
|
| + const LayoutSize& inSubPixelAccumulation)
|
| : rootLayer(inRootLayer)
|
| - , paintingRoot(inPaintingRoot)
|
| , paintDirtyRect(inDirtyRect)
|
| , subPixelAccumulation(inSubPixelAccumulation)
|
| , clipToDirtyRect(true)
|
| { }
|
| RenderLayer* rootLayer;
|
| - RenderObject* paintingRoot; // only paint descendants of this object
|
| LayoutRect paintDirtyRect; // relative to rootLayer;
|
| LayoutSize subPixelAccumulation;
|
| bool clipToDirtyRect;
|
|
|