Index: cc/CCThreadProxy.cpp |
=================================================================== |
--- cc/CCThreadProxy.cpp (revision 159486) |
+++ cc/CCThreadProxy.cpp (working copy) |
@@ -467,6 +467,7 @@ |
m_pendingBeginFrameRequest = adoptPtr(new BeginFrameAndCommitState()); |
m_pendingBeginFrameRequest->monotonicFrameBeginTime = monotonicallyIncreasingTime(); |
m_pendingBeginFrameRequest->scrollInfo = m_layerTreeHostImpl->processScrollDeltas(); |
+ m_pendingBeginFrameRequest->implTransform = m_layerTreeHostImpl->implTransform(); |
m_pendingBeginFrameRequest->memoryAllocationLimitBytes = m_layerTreeHostImpl->memoryAllocationLimitBytes(); |
m_layerTreeHost->getEvictedContentTexturesBackings(m_pendingBeginFrameRequest->evictedContentsTexturesBackings); |
@@ -511,6 +512,7 @@ |
// FIXME: technically, scroll deltas need to be applied for dropped commits as well. |
// Re-do the commit flow so that we don't send the scrollInfo on the BFAC message. |
m_layerTreeHost->applyScrollAndScale(*request->scrollInfo); |
+ m_layerTreeHost->setImplTransform(request->implTransform); |
if (!m_inCompositeAndReadback && !m_layerTreeHost->visible()) { |
m_commitRequested = false; |