| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "content/browser/compositor/gpu_vsync_begin_frame_source.h" | 5 #include "content/browser/compositor/gpu_vsync_begin_frame_source.h" |
| 6 | 6 |
| 7 namespace content { | 7 namespace content { |
| 8 | 8 |
| 9 GpuVSyncBeginFrameSource::GpuVSyncBeginFrameSource( | 9 GpuVSyncBeginFrameSource::GpuVSyncBeginFrameSource( |
| 10 GpuVSyncControl* vsync_control) | 10 GpuVSyncControl* vsync_control) |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 return; | 23 return; |
| 24 | 24 |
| 25 base::TimeTicks now = base::TimeTicks::Now(); | 25 base::TimeTicks now = base::TimeTicks::Now(); |
| 26 base::TimeTicks deadline = now.SnappedToNextTick(timestamp, interval); | 26 base::TimeTicks deadline = now.SnappedToNextTick(timestamp, interval); |
| 27 | 27 |
| 28 TRACE_EVENT1("cc", "GpuVSyncBeginFrameSource::OnVSync", "latency", | 28 TRACE_EVENT1("cc", "GpuVSyncBeginFrameSource::OnVSync", "latency", |
| 29 (now - timestamp).ToInternalValue()); | 29 (now - timestamp).ToInternalValue()); |
| 30 | 30 |
| 31 next_sequence_number_++; | 31 next_sequence_number_++; |
| 32 OnBeginFrame(cc::BeginFrameArgs::Create( | 32 OnBeginFrame(cc::BeginFrameArgs::Create( |
| 33 BEGINFRAME_FROM_HERE, source_id(), next_sequence_number_, | 33 BEGINFRAME_FROM_HERE, source_id(), next_sequence_number_, timestamp, |
| 34 cc::BeginFrameArgs::kDefaultSourceFrameNumber, timestamp, deadline, | 34 deadline, interval, cc::BeginFrameArgs::NORMAL)); |
| 35 interval, cc::BeginFrameArgs::NORMAL)); | |
| 36 } | 35 } |
| 37 | 36 |
| 38 void GpuVSyncBeginFrameSource::OnNeedsBeginFrames(bool needs_begin_frames) { | 37 void GpuVSyncBeginFrameSource::OnNeedsBeginFrames(bool needs_begin_frames) { |
| 39 needs_begin_frames_ = needs_begin_frames; | 38 needs_begin_frames_ = needs_begin_frames; |
| 40 vsync_control_->SetNeedsVSync(needs_begin_frames); | 39 vsync_control_->SetNeedsVSync(needs_begin_frames); |
| 41 } | 40 } |
| 42 | 41 |
| 43 void GpuVSyncBeginFrameSource::OnDidFinishFrame(const cc::BeginFrameAck& ack) {} | 42 void GpuVSyncBeginFrameSource::OnDidFinishFrame(const cc::BeginFrameAck& ack) {} |
| 44 | 43 |
| 45 } // namespace content | 44 } // namespace content |
| OLD | NEW |