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

Unified Diff: third_party/WebKit/Source/platform/graphics/paint/PaintArtifact.h

Issue 2176573004: Enable subsequence caching for spv2 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@CachePaintProperties
Patch Set: Fix compilation error on Windows Created 4 years, 5 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: third_party/WebKit/Source/platform/graphics/paint/PaintArtifact.h
diff --git a/third_party/WebKit/Source/platform/graphics/paint/PaintArtifact.h b/third_party/WebKit/Source/platform/graphics/paint/PaintArtifact.h
index 02827a2a08c7aa3ff69bff2563bbf4fd1f55b871..cbdf1d22adc03a02ea4065290855055cada93e24 100644
--- a/third_party/WebKit/Source/platform/graphics/paint/PaintArtifact.h
+++ b/third_party/WebKit/Source/platform/graphics/paint/PaintArtifact.h
@@ -49,6 +49,8 @@ public:
Vector<PaintChunk>& paintChunks() { return m_paintChunks; }
const Vector<PaintChunk>& paintChunks() const { return m_paintChunks; }
+ Vector<PaintChunk>::const_iterator findChunkByDisplayItemIndex(unsigned) const;
+
bool isSuitableForGpuRasterization() const { return m_isSuitableForGpuRasterization; }
// Resets to an empty paint artifact.

Powered by Google App Engine
This is Rietveld 408576698