OLD | NEW |
1 // Copyright 2011 The Chromium Authors. All rights reserved. | 1 // Copyright 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "config.h" | 5 #include "config.h" |
6 | 6 |
7 #include "CCThreadProxy.h" | 7 #include "CCThreadProxy.h" |
8 | 8 |
9 #include "CCDelayBasedTimeSource.h" | 9 #include "CCDelayBasedTimeSource.h" |
10 #include "CCDrawQuad.h" | 10 #include "CCDrawQuad.h" |
(...skipping 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
460 setNeedsForcedCommitOnImplThread(); | 460 setNeedsForcedCommitOnImplThread(); |
461 } | 461 } |
462 | 462 |
463 void CCThreadProxy::scheduledActionBeginFrame() | 463 void CCThreadProxy::scheduledActionBeginFrame() |
464 { | 464 { |
465 TRACE_EVENT0("cc", "CCThreadProxy::scheduledActionBeginFrame"); | 465 TRACE_EVENT0("cc", "CCThreadProxy::scheduledActionBeginFrame"); |
466 ASSERT(!m_pendingBeginFrameRequest); | 466 ASSERT(!m_pendingBeginFrameRequest); |
467 m_pendingBeginFrameRequest = adoptPtr(new BeginFrameAndCommitState()); | 467 m_pendingBeginFrameRequest = adoptPtr(new BeginFrameAndCommitState()); |
468 m_pendingBeginFrameRequest->monotonicFrameBeginTime = monotonicallyIncreasin
gTime(); | 468 m_pendingBeginFrameRequest->monotonicFrameBeginTime = monotonicallyIncreasin
gTime(); |
469 m_pendingBeginFrameRequest->scrollInfo = m_layerTreeHostImpl->processScrollD
eltas(); | 469 m_pendingBeginFrameRequest->scrollInfo = m_layerTreeHostImpl->processScrollD
eltas(); |
| 470 m_pendingBeginFrameRequest->implTransform = m_layerTreeHostImpl->implTransfo
rm(); |
470 m_pendingBeginFrameRequest->memoryAllocationLimitBytes = m_layerTreeHostImpl
->memoryAllocationLimitBytes(); | 471 m_pendingBeginFrameRequest->memoryAllocationLimitBytes = m_layerTreeHostImpl
->memoryAllocationLimitBytes(); |
471 m_layerTreeHost->getEvictedContentTexturesBackings(m_pendingBeginFrameReques
t->evictedContentsTexturesBackings); | 472 m_layerTreeHost->getEvictedContentTexturesBackings(m_pendingBeginFrameReques
t->evictedContentsTexturesBackings); |
472 | 473 |
473 m_mainThreadProxy->postTask(createCCThreadTask(this, &CCThreadProxy::beginFr
ame)); | 474 m_mainThreadProxy->postTask(createCCThreadTask(this, &CCThreadProxy::beginFr
ame)); |
474 | 475 |
475 if (m_beginFrameCompletionEventOnImplThread) { | 476 if (m_beginFrameCompletionEventOnImplThread) { |
476 m_beginFrameCompletionEventOnImplThread->signal(); | 477 m_beginFrameCompletionEventOnImplThread->signal(); |
477 m_beginFrameCompletionEventOnImplThread = 0; | 478 m_beginFrameCompletionEventOnImplThread = 0; |
478 } | 479 } |
479 } | 480 } |
(...skipping 24 matching lines...) Expand all Loading... |
504 m_commitRequestSentToImplThread = true; | 505 m_commitRequestSentToImplThread = true; |
505 | 506 |
506 // On the other hand, the animationRequested flag needs to be cleared | 507 // On the other hand, the animationRequested flag needs to be cleared |
507 // here so that any animation requests generated by the apply or animate | 508 // here so that any animation requests generated by the apply or animate |
508 // callbacks will trigger another frame. | 509 // callbacks will trigger another frame. |
509 m_animateRequested = false; | 510 m_animateRequested = false; |
510 | 511 |
511 // FIXME: technically, scroll deltas need to be applied for dropped commits
as well. | 512 // FIXME: technically, scroll deltas need to be applied for dropped commits
as well. |
512 // Re-do the commit flow so that we don't send the scrollInfo on the BFAC me
ssage. | 513 // Re-do the commit flow so that we don't send the scrollInfo on the BFAC me
ssage. |
513 m_layerTreeHost->applyScrollAndScale(*request->scrollInfo); | 514 m_layerTreeHost->applyScrollAndScale(*request->scrollInfo); |
| 515 m_layerTreeHost->setImplTransform(request->implTransform); |
514 | 516 |
515 if (!m_inCompositeAndReadback && !m_layerTreeHost->visible()) { | 517 if (!m_inCompositeAndReadback && !m_layerTreeHost->visible()) { |
516 m_commitRequested = false; | 518 m_commitRequested = false; |
517 m_commitRequestSentToImplThread = false; | 519 m_commitRequestSentToImplThread = false; |
518 m_forcedCommitRequested = false; | 520 m_forcedCommitRequested = false; |
519 | 521 |
520 TRACE_EVENT0("cc", "EarlyOut_NotVisible"); | 522 TRACE_EVENT0("cc", "EarlyOut_NotVisible"); |
521 CCProxy::implThread()->postTask(createCCThreadTask(this, &CCThreadProxy:
:beginFrameAbortedOnImplThread)); | 523 CCProxy::implThread()->postTask(createCCThreadTask(this, &CCThreadProxy:
:beginFrameAbortedOnImplThread)); |
522 return; | 524 return; |
523 } | 525 } |
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
948 CCThreadProxy::BeginFrameAndCommitState::BeginFrameAndCommitState() | 950 CCThreadProxy::BeginFrameAndCommitState::BeginFrameAndCommitState() |
949 : monotonicFrameBeginTime(0) | 951 : monotonicFrameBeginTime(0) |
950 { | 952 { |
951 } | 953 } |
952 | 954 |
953 CCThreadProxy::BeginFrameAndCommitState::~BeginFrameAndCommitState() | 955 CCThreadProxy::BeginFrameAndCommitState::~BeginFrameAndCommitState() |
954 { | 956 { |
955 } | 957 } |
956 | 958 |
957 } // namespace cc | 959 } // namespace cc |
OLD | NEW |