Index: sky/engine/core/rendering/RenderView.cpp |
diff --git a/sky/engine/core/rendering/RenderView.cpp b/sky/engine/core/rendering/RenderView.cpp |
index 7e0b53483da5f48c2a459ec706e6ca570ab657a7..869d0f41bdba0d57650c2bf52cd876e411130ee7 100644 |
--- a/sky/engine/core/rendering/RenderView.cpp |
+++ b/sky/engine/core/rendering/RenderView.cpp |
@@ -191,7 +191,7 @@ void RenderView::mapAbsoluteToLocalPoint(MapCoordinatesFlags mode, TransformStat |
} |
} |
-void RenderView::paint(PaintInfo& paintInfo, const LayoutPoint& paintOffset) |
+void RenderView::paint(PaintInfo& paintInfo, const LayoutPoint& paintOffset, Vector<RenderBox*>& layers) |
{ |
// If we ever require layout but receive a paint anyway, something has gone horribly wrong. |
ASSERT(!needsLayout()); |
@@ -202,7 +202,7 @@ void RenderView::paint(PaintInfo& paintInfo, const LayoutPoint& paintOffset) |
if (m_frameView && style()->isOverflowPaged()) |
paintInfo.context->fillRect(paintInfo.rect, m_frameView->baseBackgroundColor()); |
- paintObject(paintInfo, paintOffset); |
+ paintObject(paintInfo, paintOffset, layers); |
} |
static inline bool rendererObscuresBackground(RenderBox* rootBox) |