forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfake_layer_tree_host_impl.cc
99 lines (82 loc) · 3.54 KB
/
fake_layer_tree_host_impl.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
// Copyright 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "cc/test/fake_layer_tree_host_impl.h"
#include <stddef.h>
#include "cc/animation/animation_host.h"
#include "cc/test/fake_layer_tree_host_impl.h"
#include "cc/trees/layer_tree_impl.h"
#include "components/viz/test/begin_frame_args_test.h"
namespace cc {
FakeLayerTreeHostImpl::FakeLayerTreeHostImpl(
TaskRunnerProvider* task_runner_provider,
TaskGraphRunner* task_graph_runner)
: FakeLayerTreeHostImpl(LayerTreeSettings(),
task_runner_provider,
task_graph_runner) {}
FakeLayerTreeHostImpl::FakeLayerTreeHostImpl(
const LayerTreeSettings& settings,
TaskRunnerProvider* task_runner_provider,
TaskGraphRunner* task_graph_runner)
: FakeLayerTreeHostImpl(settings,
task_runner_provider,
task_graph_runner,
nullptr) {}
FakeLayerTreeHostImpl::FakeLayerTreeHostImpl(
const LayerTreeSettings& settings,
TaskRunnerProvider* task_runner_provider,
TaskGraphRunner* task_graph_runner,
scoped_refptr<base::SequencedTaskRunner> image_worker_task_runner)
: LayerTreeHostImpl(settings,
&client_,
task_runner_provider,
&stats_instrumentation_,
task_graph_runner,
AnimationHost::CreateForTesting(ThreadInstance::IMPL),
0,
std::move(image_worker_task_runner)),
notify_tile_state_changed_called_(false) {
// Explicitly clear all debug settings.
SetDebugState(LayerTreeDebugState());
active_tree()->SetDeviceViewportSize(gfx::Size(100, 100));
// Start an impl frame so tests have a valid frame_time to work with.
base::TimeTicks time_ticks =
base::TimeTicks() + base::TimeDelta::FromMicroseconds(1);
WillBeginImplFrame(viz::CreateBeginFrameArgsForTesting(BEGINFRAME_FROM_HERE,
0, 1, time_ticks));
}
FakeLayerTreeHostImpl::~FakeLayerTreeHostImpl() {
ReleaseLayerTreeFrameSink();
}
void FakeLayerTreeHostImpl::CreatePendingTree() {
LayerTreeHostImpl::CreatePendingTree();
float arbitrary_large_page_scale = 100000.f;
pending_tree()->PushPageScaleFromMainThread(
1.f, 1.f / arbitrary_large_page_scale, arbitrary_large_page_scale);
}
void FakeLayerTreeHostImpl::NotifyTileStateChanged(const Tile* tile) {
LayerTreeHostImpl::NotifyTileStateChanged(tile);
notify_tile_state_changed_called_ = true;
}
viz::BeginFrameArgs FakeLayerTreeHostImpl::CurrentBeginFrameArgs() const {
return current_begin_frame_tracker_.DangerousMethodCurrentOrLast();
}
void FakeLayerTreeHostImpl::AdvanceToNextFrame(base::TimeDelta advance_by) {
viz::BeginFrameArgs next_begin_frame_args =
current_begin_frame_tracker_.Current();
next_begin_frame_args.frame_time += advance_by;
DidFinishImplFrame();
WillBeginImplFrame(next_begin_frame_args);
}
void FakeLayerTreeHostImpl::UpdateNumChildrenAndDrawPropertiesForActiveTree() {
UpdateNumChildrenAndDrawProperties(active_tree());
}
void FakeLayerTreeHostImpl::UpdateNumChildrenAndDrawProperties(
LayerTreeImpl* layerTree) {
layerTree->BuildLayerListAndPropertyTreesForTesting();
layerTree->UpdateDrawProperties();
}
AnimationHost* FakeLayerTreeHostImpl::animation_host() const {
return static_cast<AnimationHost*>(mutator_host());
}
} // namespace cc