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

Unified Diff: cc/single_thread_proxy.cc

Issue 11879012: cc: Redraw incomplete frames when new texture uploads finish (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@decouple_draw3b
Patch Set: rename some method, only check for incomplete frames when impl-side painting Created 7 years, 11 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: cc/single_thread_proxy.cc
diff --git a/cc/single_thread_proxy.cc b/cc/single_thread_proxy.cc
index 1dc1e6bb95354af91577bad1643439ce586dd5f9..2007ba31271d55d11eebd2017836dd558680fbf2 100644
--- a/cc/single_thread_proxy.cc
+++ b/cc/single_thread_proxy.cc
@@ -269,6 +269,18 @@ void SingleThreadProxy::setNeedsRedrawOnImplThread()
m_layerTreeHost->scheduleComposite();
}
+void SingleThreadProxy::didSwapUseIncompleteTextureOnImplThread()
+{
+ // implSidePainting only.
+ NOTREACHED();
+}
+
+void SingleThreadProxy::didUploadVisibleHighResolutionTileOnImplTread()
+{
+ // implSidePainting only.
+ NOTREACHED();
+}
+
void SingleThreadProxy::setNeedsCommitOnImplThread()
{
m_layerTreeHost->scheduleComposite();

Powered by Google App Engine
This is Rietveld 408576698