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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
// Copyright 2011 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/scheduler/frame_rate_controller.h"
#include "base/debug/trace_event.h"
#include "base/location.h"
#include "base/logging.h"
#include "base/single_thread_task_runner.h"
#include "cc/scheduler/delay_based_time_source.h"
#include "cc/scheduler/time_source.h"
namespace cc {
class FrameRateControllerTimeSourceAdapter : public TimeSourceClient {
public:
static scoped_ptr<FrameRateControllerTimeSourceAdapter> Create(
FrameRateController* frame_rate_controller) {
return make_scoped_ptr(
new FrameRateControllerTimeSourceAdapter(frame_rate_controller));
}
virtual ~FrameRateControllerTimeSourceAdapter() {}
virtual void OnTimerTick() OVERRIDE {
frame_rate_controller_->OnTimerTick();
}
private:
explicit FrameRateControllerTimeSourceAdapter(
FrameRateController* frame_rate_controller)
: frame_rate_controller_(frame_rate_controller) {}
FrameRateController* frame_rate_controller_;
};
FrameRateController::FrameRateController(scoped_refptr<TimeSource> timer)
: client_(NULL),
num_frames_pending_(0),
max_swaps_pending_(0),
time_source_(timer),
active_(false),
is_time_source_throttling_(true),
weak_factory_(this),
task_runner_(NULL) {
time_source_client_adapter_ =
FrameRateControllerTimeSourceAdapter::Create(this);
time_source_->SetClient(time_source_client_adapter_.get());
}
FrameRateController::FrameRateController(
base::SingleThreadTaskRunner* task_runner)
: client_(NULL),
num_frames_pending_(0),
max_swaps_pending_(0),
active_(false),
is_time_source_throttling_(false),
weak_factory_(this),
task_runner_(task_runner) {}
FrameRateController::~FrameRateController() {
if (is_time_source_throttling_)
time_source_->SetActive(false);
}
void FrameRateController::SetActive(bool active) {
if (active_ == active)
return;
TRACE_EVENT1("cc", "FrameRateController::SetActive", "active", active);
active_ = active;
if (is_time_source_throttling_) {
time_source_->SetActive(active);
} else {
if (active)
PostManualTick();
else
weak_factory_.InvalidateWeakPtrs();
}
}
void FrameRateController::SetMaxSwapsPending(int max_swaps_pending) {
DCHECK_GE(max_swaps_pending, 0);
max_swaps_pending_ = max_swaps_pending;
}
void FrameRateController::SetTimebaseAndInterval(base::TimeTicks timebase,
base::TimeDelta interval) {
if (is_time_source_throttling_)
time_source_->SetTimebaseAndInterval(timebase, interval);
}
void FrameRateController::OnTimerTick() {
TRACE_EVENT0("cc", "FrameRateController::OnTimerTick");
DCHECK(active_);
// Check if we have too many frames in flight.
bool throttled =
max_swaps_pending_ && num_frames_pending_ >= max_swaps_pending_;
TRACE_COUNTER_ID1("cc", "ThrottledCompositor", task_runner_, throttled);
if (client_) {
client_->FrameRateControllerTick(throttled);
}
if (!is_time_source_throttling_ && !throttled)
PostManualTick();
}
void FrameRateController::PostManualTick() {
if (active_) {
task_runner_->PostTask(FROM_HERE,
base::Bind(&FrameRateController::ManualTick,
weak_factory_.GetWeakPtr()));
}
}
void FrameRateController::ManualTick() {
OnTimerTick();
}
void FrameRateController::DidSwapBuffers() {
num_frames_pending_++;
}
void FrameRateController::DidSwapBuffersComplete() {
DCHECK_GT(num_frames_pending_, 0);
num_frames_pending_--;
if (!is_time_source_throttling_)
PostManualTick();
}
void FrameRateController::DidAbortAllPendingFrames() {
num_frames_pending_ = 0;
}
base::TimeTicks FrameRateController::NextTickTime() {
if (is_time_source_throttling_)
return time_source_->NextTickTime();
return base::TimeTicks();
}
base::TimeTicks FrameRateController::LastTickTime() {
if (is_time_source_throttling_)
return time_source_->LastTickTime();
return base::TimeTicks::Now();
}
} // namespace cc
|