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

Unified Diff: Source/platform/graphics/paint/DisplayItem.cpp

Issue 1327563003: Don't cache subsequence whose layer is not fully contained by repaint rect (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: For review Created 5 years, 3 months 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: Source/platform/graphics/paint/DisplayItem.cpp
diff --git a/Source/platform/graphics/paint/DisplayItem.cpp b/Source/platform/graphics/paint/DisplayItem.cpp
index 59fd0fec4bc8a868591277e109e2bb0eac4c5448..b637aca6e736f5208ab164245c0c2f3f1d0e5011 100644
--- a/Source/platform/graphics/paint/DisplayItem.cpp
+++ b/Source/platform/graphics/paint/DisplayItem.cpp
@@ -230,6 +230,8 @@ void DisplayItem::dumpPropertiesAsDebugString(WTF::StringBuilder& stringBuilder)
stringBuilder.append('"');
if (m_skippedCache)
stringBuilder.append(", skippedCache: true");
+ if (m_isUncacheable)
+ stringBuilder.append(", isUncacheable: true");
if (m_scope)
stringBuilder.append(String::format(", scope: %d", m_scope));
}

Powered by Google App Engine
This is Rietveld 408576698