OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BeginImplFrame
(Results
1 - 20
of
20
) sorted by null
/external/chromium_org/cc/test/
fake_output_surface_client.cc
15
void FakeOutputSurfaceClient::
BeginImplFrame
(const BeginFrameArgs& args) {
fake_layer_tree_host_impl_client.h
20
virtual void
BeginImplFrame
(const BeginFrameArgs& args)
fake_output_surface_client.h
26
virtual void
BeginImplFrame
(const BeginFrameArgs& args) OVERRIDE;
fake_output_surface.cc
91
// If there is not
BeginImplFrame
emulation from the FrameRateController,
92
// then we just post a
BeginImplFrame
to emulate it as part of the test.
102
OutputSurface::
BeginImplFrame
(BeginFrameArgs::CreateForTesting());
layer_tree_test.cc
81
virtual void
BeginImplFrame
(const BeginFrameArgs& args) OVERRIDE {
83
LayerTreeHostImpl::
BeginImplFrame
(args);
642
// Spend less time waiting for
BeginImplFrame
because the output is
/external/chromium_org/cc/output/
output_surface_client.h
34
virtual void
BeginImplFrame
(const BeginFrameArgs& args) = 0;
output_surface.cc
136
BeginImplFrame
(args);
158
void OutputSurface::
BeginImplFrame
(const BeginFrameArgs& args) {
159
TRACE_EVENT2("cc", "OutputSurface::
BeginImplFrame
",
169
client_->
BeginImplFrame
(args);
171
// Do not reset it before calling
BeginImplFrame
!
202
BeginImplFrame
(skipped_begin_impl_frame_args_);
output_surface.h
71
// This doesn't handle the <webview> case, but once
BeginImplFrame
is
131
// Requests a
BeginImplFrame
notification from the output surface. The
133
// OutputSurfaceClient::
BeginImplFrame
until the callback is disabled.
172
// This stores a
BeginImplFrame
that we couldn't process immediately,
179
void
BeginImplFrame
(const BeginFrameArgs& args);
204
// redundant checks for a retroactive
BeginImplFrame
.
output_surface_unittest.cc
55
OutputSurface::
BeginImplFrame
(BeginFrameArgs::CreateExpiredForTesting());
230
// Initialize
BeginImplFrame
emulation
250
// We should not have a pending task until a
BeginImplFrame
has been
256
//
BeginImplFrame
should be called on the first tick.
261
//
BeginImplFrame
should not be called when there is a pending
BeginImplFrame
.
266
// SetNeedsBeginImplFrame should clear the pending
BeginImplFrame
after
276
//
BeginImplFrame
should be throttled by pending swap buffers.
285
// SwapAck should decrement pending swap buffers and unblock
BeginImplFrame
295
// the client still wants another
BeginImplFrame
[
all
...]
/external/chromium_org/cc/scheduler/
scheduler_unittest.cc
39
scheduler->
BeginImplFrame
(BeginFrameArgs::CreateForTesting());
41
// We need another
BeginImplFrame
so Scheduler calls
43
scheduler->
BeginImplFrame
(BeginFrameArgs::CreateForTesting());
217
// SetNeedsCommit should begin the frame on the next
BeginImplFrame
.
230
scheduler->
BeginImplFrame
(BeginFrameArgs::CreateForTesting());
241
//
BeginImplFrame
.
253
//
BeginImplFrame
should prepare the draw.
254
scheduler->
BeginImplFrame
(BeginFrameArgs::CreateForTesting());
259
//
BeginImplFrame
deadline should draw.
266
// The following
BeginImplFrame
deadline should SetNeedsBeginImplFrame(false
[
all
...]
scheduler.h
118
void
BeginImplFrame
(const BeginFrameArgs& args);
scheduler.cc
155
// Always request the
BeginImplFrame
immediately if it wasn't needed
158
// We always need to explicitly request our next
BeginImplFrame
.
187
// will not give us a
BeginImplFrame
until the commit completes. See
190
// successfully reach
BeginImplFrame
.
198
// Since we'd rather get a
BeginImplFrame
by the normally mechanism, we set
211
void Scheduler::
BeginImplFrame
(const BeginFrameArgs& args) {
212
TRACE_EVENT0("cc", "Scheduler::
BeginImplFrame
");
235
// within this call to
BeginImplFrame
.
238
// up the
BeginImplFrame
and deadline as well.
254
// expected
BeginImplFrame
start. This allows us to draw immediately whe
[
all
...]
/external/chromium_org/cc/trees/
single_thread_proxy.h
60
virtual void
BeginImplFrame
(const BeginFrameArgs& args)
layer_tree_host_impl.h
65
virtual void
BeginImplFrame
(const BeginFrameArgs& args) = 0;
225
virtual void
BeginImplFrame
(const BeginFrameArgs& args) OVERRIDE;
thread_proxy.h
75
virtual void
BeginImplFrame
(const BeginFrameArgs& args) OVERRIDE;
thread_proxy.cc
435
void ThreadProxy::
BeginImplFrame
(const BeginFrameArgs& args) {
437
TRACE_EVENT0("cc", "ThreadProxy::
BeginImplFrame
");
443
scheduler_on_impl_thread_->
BeginImplFrame
(args);
[
all
...]
layer_tree_host_impl.cc
[
all
...]
layer_tree_host_impl_unittest.cc
110
virtual void
BeginImplFrame
(const BeginFrameArgs& args) OVERRIDE {}
[
all
...]
/external/chromium_org/content/renderer/gpu/
compositor_output_surface.cc
166
BeginImplFrame
(args);
/external/chromium_org/content/browser/android/in_process/
synchronous_compositor_output_surface.cc
235
BeginImplFrame
(cc::BeginFrameArgs::CreateForSynchronousCompositor());
Completed in 145 milliseconds