Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(57)

Unified Diff: third_party/WebKit/Source/core/layout/LayoutView.cpp

Issue 1331533002: [poc] curve-filter Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Draw layered images with a recording GraphicContext Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/layout/LayoutView.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutView.cpp b/third_party/WebKit/Source/core/layout/LayoutView.cpp
index 28d82f1438ddc43be2cadbe714295b402a0039f8..7491aa73fd4a04a2148c639862baa337b2d25a9c 100644
--- a/third_party/WebKit/Source/core/layout/LayoutView.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutView.cpp
@@ -410,7 +410,7 @@ void LayoutView::setShouldDoFullPaintInvalidationForViewAndAllDescendants()
setShouldDoFullPaintInvalidationForViewAndAllDescendantsInternal(this);
}
-void LayoutView::invalidatePaintForViewAndCompositedLayers()
+void LayoutView::invalidatePaintForViewAndCompositedLayers(bool changeDirectlyCompositedImages)
{
setShouldDoFullPaintInvalidation();
@@ -418,7 +418,7 @@ void LayoutView::invalidatePaintForViewAndCompositedLayers()
DisableCompositingQueryAsserts disabler;
if (compositor()->inCompositingMode())
- compositor()->fullyInvalidatePaint();
+ compositor()->fullyInvalidatePaint(changeDirectlyCompositedImages);
}
void LayoutView::mapRectToPaintInvalidationBacking(const LayoutBoxModelObject* paintInvalidationContainer, LayoutRect& rect, const PaintInvalidationState* invalidationState) const

Powered by Google App Engine
This is Rietveld 408576698