summaryrefslogtreecommitdiffstats
path: root/cc/trees/single_thread_proxy.cc
diff options
context:
space:
mode:
authorhenrika <henrika@chromium.org>2014-09-08 00:15:05 -0700
committerCommit bot <commit-bot@chromium.org>2014-09-08 07:21:25 +0000
commitea769fd2090e40950c84f9df851ffec5792bf04e (patch)
treecc7f28288a3a2206cdaf110779cec11154b74e6c /cc/trees/single_thread_proxy.cc
parentf4c09a1101b323c71862728bc86e882d67c1404b (diff)
downloadchromium_src-ea769fd2090e40950c84f9df851ffec5792bf04e.zip
chromium_src-ea769fd2090e40950c84f9df851ffec5792bf04e.tar.gz
chromium_src-ea769fd2090e40950c84f9df851ffec5792bf04e.tar.bz2
Revert of cc: Single-threaded impl-side painting for unit tests (patchset #5 id:80001 of https://codereview.chromium.org/508373002/)
Reason for revert: LayerTreeHostContextTestDontUseLostResources.RunSingleThread_DirectRenderer_MainThreadPaint Fails on Win7 bot after this change. Speculative revert by sheriff. http://build.chromium.org/p/chromium.win/builders/Win7%20Tests%20%28dbg%29%281%29/builds/30957/steps/cc_unittests/logs/RunSingleThread_DirectRenderer_MainThreadPaint Original issue's description: > cc: Single-threaded impl-side painting for unit tests > > This adds methods to SingleThreadProxy to support impl-side painting > when using the scheduler. This allows most unit tests to test impl-side > painting classes through both the single and threaded paths. > > The biggest caveat to this approach is the "commit waits for activation" > logic that mailboxes want to use. Because there is no easy way to block > the only thread there is while activation happens, activation always > happens immediately during commit, even if the tree is not ready. To > cause the tree to wait to draw until it is ready, drawing is prevented > via SetRequiresHighResToDraw. This prepares the way for the future > where the SingleThreadProxy will likely commit directly to the active > tree. > > The synchronous CompositeImmediately function does not support impl-side > painting yet. This is the path used by everything but unit tests at > this point. > > R=danakj@chromium.org > BUG=329553 > > Committed: https://chromium.googlesource.com/chromium/src/+/7eee8e03582772716b820001af75343f6341e6e8 TBR=danakj@chromium.org,enne@chromium.org NOTREECHECKS=true NOTRY=true BUG=329553 Review URL: https://codereview.chromium.org/550073002 Cr-Commit-Position: refs/heads/master@{#293685}
Diffstat (limited to 'cc/trees/single_thread_proxy.cc')
-rw-r--r--cc/trees/single_thread_proxy.cc97
1 files changed, 23 insertions, 74 deletions
diff --git a/cc/trees/single_thread_proxy.cc b/cc/trees/single_thread_proxy.cc
index 8445021..0e8c81c 100644
--- a/cc/trees/single_thread_proxy.cc
+++ b/cc/trees/single_thread_proxy.cc
@@ -12,6 +12,7 @@
#include "cc/quads/draw_quad.h"
#include "cc/resources/prioritized_resource_manager.h"
#include "cc/resources/resource_update_controller.h"
+#include "cc/trees/blocking_task_runner.h"
#include "cc/trees/layer_tree_host.h"
#include "cc/trees/layer_tree_host_single_thread_client.h"
#include "cc/trees/layer_tree_impl.h"
@@ -46,6 +47,10 @@ SingleThreadProxy::SingleThreadProxy(
TRACE_EVENT0("cc", "SingleThreadProxy::SingleThreadProxy");
DCHECK(Proxy::IsMainThread());
DCHECK(layer_tree_host);
+
+ // Impl-side painting not supported without threaded compositing.
+ CHECK(!layer_tree_host->settings().impl_side_painting)
+ << "Threaded compositing must be enabled to use impl-side painting.";
}
void SingleThreadProxy::Start() {
@@ -187,8 +192,8 @@ void SingleThreadProxy::DoCommit(const BeginFrameArgs& begin_frame_args) {
// This CapturePostTasks should be destroyed before CommitComplete() is
// called since that goes out to the embedder, and we want the embedder
// to receive its callbacks before that.
- commit_blocking_task_runner_.reset(new BlockingTaskRunner::CapturePostTasks(
- blocking_main_thread_task_runner()));
+ BlockingTaskRunner::CapturePostTasks blocked(
+ blocking_main_thread_task_runner());
layer_tree_host_impl_->BeginCommit();
@@ -230,27 +235,6 @@ void SingleThreadProxy::DoCommit(const BeginFrameArgs& begin_frame_args) {
stats_instrumentation->main_thread_rendering_stats());
stats_instrumentation->AccumulateAndClearMainThreadStats();
}
-
- if (layer_tree_host_->settings().impl_side_painting) {
- // TODO(enne): just commit directly to the active tree.
- //
- // Synchronously activate during commit to satisfy any potential
- // SetNextCommitWaitsForActivation calls. Unfortunately, the tree
- // might not be ready to draw, so DidActivateSyncTree must set
- // the flag to force the tree to not draw until textures are ready.
- NotifyReadyToActivate();
- } else {
- CommitComplete();
- }
-}
-
-void SingleThreadProxy::CommitComplete() {
- DCHECK(!layer_tree_host_impl_->pending_tree())
- << "Activation is expected to have synchronously occurred by now.";
- DCHECK(commit_blocking_task_runner_);
-
- DebugScopedSetMainThread main(this);
- commit_blocking_task_runner_.reset();
layer_tree_host_->CommitComplete();
layer_tree_host_->DidBeginMainFrame();
timing_history_.DidCommit();
@@ -276,7 +260,7 @@ void SingleThreadProxy::SetNeedsRedraw(const gfx::Rect& damage_rect) {
}
void SingleThreadProxy::SetNextCommitWaitsForActivation() {
- // Activation always forced in commit, so nothing to do.
+ // There is no activation here other than commit. So do nothing.
DCHECK(Proxy::IsMainThread());
}
@@ -345,10 +329,8 @@ void SingleThreadProxy::OnCanDrawStateChanged(bool can_draw) {
}
void SingleThreadProxy::NotifyReadyToActivate() {
- TRACE_EVENT0("cc", "SingleThreadProxy::NotifyReadyToActivate");
- DebugScopedSetImplThread impl(this);
- if (scheduler_on_impl_thread_)
- scheduler_on_impl_thread_->NotifyReadyToActivate();
+ // Impl-side painting only.
+ NOTREACHED();
}
void SingleThreadProxy::SetNeedsRedrawOnImplThread() {
@@ -362,9 +344,8 @@ void SingleThreadProxy::SetNeedsAnimateOnImplThread() {
}
void SingleThreadProxy::SetNeedsManageTilesOnImplThread() {
- TRACE_EVENT0("cc", "SingleThreadProxy::SetNeedsManageTilesOnImplThread");
- if (scheduler_on_impl_thread_)
- scheduler_on_impl_thread_->SetNeedsManageTiles();
+ // Impl-side painting only.
+ NOTREACHED();
}
void SingleThreadProxy::SetNeedsRedrawRectOnImplThread(
@@ -374,9 +355,8 @@ void SingleThreadProxy::SetNeedsRedrawRectOnImplThread(
}
void SingleThreadProxy::DidInitializeVisibleTileOnImplThread() {
- TRACE_EVENT0("cc", "SingleThreadProxy::DidInitializeVisibleTileOnImplThread");
- if (scheduler_on_impl_thread_)
- scheduler_on_impl_thread_->SetNeedsRedraw();
+ // Impl-side painting only.
+ NOTREACHED();
}
void SingleThreadProxy::SetNeedsCommitOnImplThread() {
@@ -413,41 +393,17 @@ bool SingleThreadProxy::ReduceContentsTextureMemoryOnImplThread(
bool SingleThreadProxy::IsInsideDraw() { return inside_draw_; }
-void SingleThreadProxy::DidActivateSyncTree() {
- // Non-impl-side painting finishes commit in DoCommit. Impl-side painting
- // defers until here to simulate SetNextCommitWaitsForActivation.
- if (layer_tree_host_impl_->settings().impl_side_painting) {
- // This is required because NotifyReadyToActivate gets called when
- // the pending tree is not actually ready in the SingleThreadProxy.
- layer_tree_host_impl_->active_tree()->SetRequiresHighResToDraw();
-
- // Since activation could cause tasks to run, post CommitComplete
- // separately so that it runs after these tasks. This is the loose
- // equivalent of blocking commit until activation and also running
- // all tasks posted during commit/activation before CommitComplete.
- MainThreadTaskRunner()->PostTask(
- FROM_HERE,
- base::Bind(&SingleThreadProxy::CommitComplete,
- weak_factory_.GetWeakPtr()));
- }
-
- UpdateBackgroundAnimateTicking();
- timing_history_.DidActivateSyncTree();
-}
-
-void SingleThreadProxy::DidManageTiles() {
- DCHECK(layer_tree_host_impl_->settings().impl_side_painting);
- DCHECK(Proxy::IsImplThread());
- if (scheduler_on_impl_thread_)
- scheduler_on_impl_thread_->DidManageTiles();
-}
-
void SingleThreadProxy::UpdateRendererCapabilitiesOnImplThread() {
DCHECK(IsImplThread());
renderer_capabilities_for_main_thread_ =
layer_tree_host_impl_->GetRendererCapabilities().MainThreadCapabilities();
}
+void SingleThreadProxy::DidManageTiles() {
+ // Impl-side painting only.
+ NOTREACHED();
+}
+
void SingleThreadProxy::DidLoseOutputSurfaceOnImplThread() {
TRACE_EVENT0("cc", "SingleThreadProxy::DidLoseOutputSurfaceOnImplThread");
{
@@ -490,9 +446,6 @@ void SingleThreadProxy::CompositeImmediately(base::TimeTicks frame_begin_time) {
frame_begin_time, base::TimeTicks(), BeginFrameArgs::DefaultInterval());
DoCommit(begin_frame_args);
- DCHECK(!layer_tree_host_impl_->settings().impl_side_painting)
- << "Impl-side painting and synchronous compositing are not supported.";
-
LayerTreeHostImpl::FrameData frame;
DoComposite(frame_begin_time, &frame);
}
@@ -694,13 +647,11 @@ void SingleThreadProxy::ScheduledActionAnimate() {
}
void SingleThreadProxy::ScheduledActionUpdateVisibleTiles() {
- DebugScopedSetImplThread impl(this);
- layer_tree_host_impl_->UpdateVisibleTiles();
+ // Impl-side painting only.
+ NOTREACHED();
}
void SingleThreadProxy::ScheduledActionActivateSyncTree() {
- DebugScopedSetImplThread impl(this);
- layer_tree_host_impl_->ActivateSyncTree();
}
void SingleThreadProxy::ScheduledActionBeginOutputSurfaceCreation() {
@@ -721,10 +672,8 @@ void SingleThreadProxy::ScheduledActionBeginOutputSurfaceCreation() {
}
void SingleThreadProxy::ScheduledActionManageTiles() {
- TRACE_EVENT0("cc", "SingleThreadProxy::ScheduledActionManageTiles");
- DCHECK(layer_tree_host_impl_->settings().impl_side_painting);
- DebugScopedSetImplThread impl(this);
- layer_tree_host_impl_->ManageTiles();
+ // Impl-side painting only.
+ NOTREACHED();
}
void SingleThreadProxy::DidAnticipatedDrawTimeChange(base::TimeTicks time) {