| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 "cc/output/output_surface.h" | 5 #include "cc/output/output_surface.h" |
| 6 | 6 |
| 7 #include <stdint.h> | 7 #include <stdint.h> |
| 8 | 8 |
| 9 #include "base/bind.h" | 9 #include "base/bind.h" |
| 10 #include "base/location.h" | 10 #include "base/location.h" |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 scoped_refptr<ContextProvider> context_provider, | 182 scoped_refptr<ContextProvider> context_provider, |
| 183 std::unique_ptr<SoftwareOutputDevice> software_device) | 183 std::unique_ptr<SoftwareOutputDevice> software_device) |
| 184 : OutputSurface(std::move(context_provider), | 184 : OutputSurface(std::move(context_provider), |
| 185 nullptr, | 185 nullptr, |
| 186 #if defined(ENABLE_VULKAN) | 186 #if defined(ENABLE_VULKAN) |
| 187 nullptr, | 187 nullptr, |
| 188 #endif | 188 #endif |
| 189 std::move(software_device)) { | 189 std::move(software_device)) { |
| 190 } | 190 } |
| 191 | 191 |
| 192 void OutputSurface::CommitVSyncParameters(base::TimeTicks timebase, | |
| 193 base::TimeDelta interval) { | |
| 194 TRACE_EVENT2("cc", | |
| 195 "OutputSurface::CommitVSyncParameters", | |
| 196 "timebase", | |
| 197 (timebase - base::TimeTicks()).InSecondsF(), | |
| 198 "interval", | |
| 199 interval.InSecondsF()); | |
| 200 client_->CommitVSyncParameters(timebase, interval); | |
| 201 } | |
| 202 | |
| 203 // Forwarded to OutputSurfaceClient | 192 // Forwarded to OutputSurfaceClient |
| 204 void OutputSurface::SetNeedsRedrawRect(const gfx::Rect& damage_rect) { | 193 void OutputSurface::SetNeedsRedrawRect(const gfx::Rect& damage_rect) { |
| 205 TRACE_EVENT0("cc", "OutputSurface::SetNeedsRedrawRect"); | 194 TRACE_EVENT0("cc", "OutputSurface::SetNeedsRedrawRect"); |
| 206 client_->SetNeedsRedrawRect(damage_rect); | 195 client_->SetNeedsRedrawRect(damage_rect); |
| 207 } | 196 } |
| 208 | 197 |
| 209 void OutputSurface::ReclaimResources(const CompositorFrameAck* ack) { | 198 void OutputSurface::ReclaimResources(const CompositorFrameAck* ack) { |
| 210 client_->ReclaimResources(ack); | 199 client_->ReclaimResources(ack); |
| 211 } | 200 } |
| 212 | 201 |
| (...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 393 if (context_provider_.get()) { | 382 if (context_provider_.get()) { |
| 394 context_provider_->SetLostContextCallback( | 383 context_provider_->SetLostContextCallback( |
| 395 ContextProvider::LostContextCallback()); | 384 ContextProvider::LostContextCallback()); |
| 396 } | 385 } |
| 397 context_provider_ = nullptr; | 386 context_provider_ = nullptr; |
| 398 client_ = nullptr; | 387 client_ = nullptr; |
| 399 weak_ptr_factory_.InvalidateWeakPtrs(); | 388 weak_ptr_factory_.InvalidateWeakPtrs(); |
| 400 } | 389 } |
| 401 | 390 |
| 402 } // namespace cc | 391 } // namespace cc |
| OLD | NEW |