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

Unified Diff: cc/CCLayerTreeHostImpl.cpp

Issue 10985082: GPU benchmarks should track the frequency of impl-thread vs. main-thread scrolls (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixed merge conflicts Created 8 years, 2 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
« no previous file with comments | « cc/CCLayerTreeHostImpl.h ('k') | cc/CCRenderingStats.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/CCLayerTreeHostImpl.cpp
diff --git a/cc/CCLayerTreeHostImpl.cpp b/cc/CCLayerTreeHostImpl.cpp
index c9255a52cdbd572af2f33affa105898496af8559..5b1a23d67c4849142e87a75153fb473335e1f628 100644
--- a/cc/CCLayerTreeHostImpl.cpp
+++ b/cc/CCLayerTreeHostImpl.cpp
@@ -131,6 +131,8 @@ CCLayerTreeHostImpl::CCLayerTreeHostImpl(const CCLayerTreeSettings& settings, CC
, m_pinchGestureActive(false)
, m_fpsCounter(CCFrameRateCounter::create())
, m_debugRectHistory(CCDebugRectHistory::create())
+ , m_numImplThreadScrolls(0)
+ , m_numMainThreadScrolls(0)
{
ASSERT(CCProxy::isImplThread());
didVisibilityChange(this, m_visible);
@@ -925,8 +927,10 @@ CCInputHandlerClient::ScrollStatus CCLayerTreeHostImpl::scrollBegin(const IntPoi
CCLayerImpl* potentiallyScrollingLayerImpl = 0;
for (; layerImpl; layerImpl = layerImpl->parent()) {
// The content layer can also block attempts to scroll outside the main thread.
- if (layerImpl->tryScroll(deviceViewportPoint, type) == ScrollOnMainThread)
+ if (layerImpl->tryScroll(deviceViewportPoint, type) == ScrollOnMainThread) {
+ m_numMainThreadScrolls++;
return ScrollOnMainThread;
+ }
CCLayerImpl* scrollLayerImpl = findScrollLayerForContentLayer(layerImpl);
if (!scrollLayerImpl)
@@ -935,8 +939,10 @@ CCInputHandlerClient::ScrollStatus CCLayerTreeHostImpl::scrollBegin(const IntPoi
ScrollStatus status = scrollLayerImpl->tryScroll(viewportPoint, type);
// If any layer wants to divert the scroll event to the main thread, abort.
- if (status == ScrollOnMainThread)
+ if (status == ScrollOnMainThread) {
+ m_numMainThreadScrolls++;
return ScrollOnMainThread;
+ }
if (status == ScrollStarted && !potentiallyScrollingLayerImpl)
potentiallyScrollingLayerImpl = scrollLayerImpl;
@@ -948,6 +954,7 @@ CCInputHandlerClient::ScrollStatus CCLayerTreeHostImpl::scrollBegin(const IntPoi
// so that the scrolling contents exactly follow the user's finger. In contrast, wheel
// events are already in local layer coordinates so we can just apply them directly.
m_scrollDeltaIsInScreenSpace = (type == Gesture);
+ m_numImplThreadScrolls++;
return ScrollStarted;
}
return ScrollIgnored;
@@ -1299,6 +1306,8 @@ void CCLayerTreeHostImpl::renderingStats(CCRenderingStats* stats) const
{
stats->numFramesSentToScreen = fpsCounter()->currentFrameNumber();
stats->droppedFrameCount = fpsCounter()->droppedFrameCount();
+ stats->numImplThreadScrolls = m_numImplThreadScrolls;
+ stats->numMainThreadScrolls = m_numMainThreadScrolls;
}
void CCLayerTreeHostImpl::animateScrollbars(double monotonicTime)
« no previous file with comments | « cc/CCLayerTreeHostImpl.h ('k') | cc/CCRenderingStats.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698