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

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: Created 8 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
« 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 479348230892e799dbfa1596f84d39483b501013..606ed38a0e819c25b126f336a721d776c1e0d8fe 100644
--- a/cc/CCLayerTreeHostImpl.cpp
+++ b/cc/CCLayerTreeHostImpl.cpp
@@ -937,6 +937,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_didImplThreadScroll = true;
return ScrollStarted;
}
return ScrollIgnored;
@@ -1034,6 +1035,7 @@ void CCLayerTreeHostImpl::clearCurrentlyScrollingLayer()
{
m_currentlyScrollingLayerImpl = 0;
m_scrollingLayerIdFromPreviousTree = -1;
+ m_didImplThreadScroll = false;
enne (OOO) 2012/09/28 18:54:29 This seems a little weird to me. If a scroll gest
tdanderson 2012/10/01 19:38:12 Thanks for the feedback. Instead of using a boolea
}
void CCLayerTreeHostImpl::scrollEnd()
@@ -1288,6 +1290,7 @@ void CCLayerTreeHostImpl::renderingStats(CCRenderingStats* stats) const
{
stats->numFramesSentToScreen = fpsCounter()->currentFrameNumber();
stats->droppedFrameCount = fpsCounter()->droppedFrameCount();
+ stats->didImplThreadScroll = m_didImplThreadScroll;
}
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