OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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/surfaces/direct_compositor_frame_sink.h" | 5 #include "cc/surfaces/direct_compositor_frame_sink.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "cc/output/compositor_frame.h" | 8 #include "cc/output/compositor_frame.h" |
9 #include "cc/output/compositor_frame_sink_client.h" | 9 #include "cc/output/compositor_frame_sink_client.h" |
10 #include "cc/surfaces/display.h" | 10 #include "cc/surfaces/display.h" |
(...skipping 14 matching lines...) Expand all Loading... |
25 SharedBitmapManager* shared_bitmap_manager) | 25 SharedBitmapManager* shared_bitmap_manager) |
26 : CompositorFrameSink(std::move(context_provider), | 26 : CompositorFrameSink(std::move(context_provider), |
27 std::move(worker_context_provider), | 27 std::move(worker_context_provider), |
28 gpu_memory_buffer_manager, | 28 gpu_memory_buffer_manager, |
29 shared_bitmap_manager), | 29 shared_bitmap_manager), |
30 frame_sink_id_(frame_sink_id), | 30 frame_sink_id_(frame_sink_id), |
31 surface_manager_(surface_manager), | 31 surface_manager_(surface_manager), |
32 display_(display), | 32 display_(display), |
33 factory_(frame_sink_id, surface_manager, this) { | 33 factory_(frame_sink_id, surface_manager, this) { |
34 DCHECK(thread_checker_.CalledOnValidThread()); | 34 DCHECK(thread_checker_.CalledOnValidThread()); |
35 capabilities_.can_force_reclaim_resources = true; | 35 capabilities_.must_always_swap = true; |
36 // Display and DirectCompositorFrameSink share a GL context, so sync | 36 // Display and DirectCompositorFrameSink share a GL context, so sync |
37 // points aren't needed when passing resources between them. | 37 // points aren't needed when passing resources between them. |
38 capabilities_.delegated_sync_points_required = false; | 38 capabilities_.delegated_sync_points_required = false; |
39 factory_.set_needs_sync_points(false); | 39 factory_.set_needs_sync_points(false); |
40 } | 40 } |
41 | 41 |
42 DirectCompositorFrameSink::DirectCompositorFrameSink( | 42 DirectCompositorFrameSink::DirectCompositorFrameSink( |
43 const FrameSinkId& frame_sink_id, | 43 const FrameSinkId& frame_sink_id, |
44 SurfaceManager* surface_manager, | 44 SurfaceManager* surface_manager, |
45 Display* display, | 45 Display* display, |
46 scoped_refptr<VulkanContextProvider> vulkan_context_provider) | 46 scoped_refptr<VulkanContextProvider> vulkan_context_provider) |
47 : CompositorFrameSink(std::move(vulkan_context_provider)), | 47 : CompositorFrameSink(std::move(vulkan_context_provider)), |
48 frame_sink_id_(frame_sink_id), | 48 frame_sink_id_(frame_sink_id), |
49 surface_manager_(surface_manager), | 49 surface_manager_(surface_manager), |
50 display_(display), | 50 display_(display), |
51 factory_(frame_sink_id_, surface_manager, this) { | 51 factory_(frame_sink_id_, surface_manager, this) { |
52 DCHECK(thread_checker_.CalledOnValidThread()); | 52 DCHECK(thread_checker_.CalledOnValidThread()); |
53 capabilities_.can_force_reclaim_resources = true; | 53 capabilities_.must_always_swap = true; |
54 } | 54 } |
55 | 55 |
56 DirectCompositorFrameSink::~DirectCompositorFrameSink() { | 56 DirectCompositorFrameSink::~DirectCompositorFrameSink() { |
57 DCHECK(thread_checker_.CalledOnValidThread()); | 57 DCHECK(thread_checker_.CalledOnValidThread()); |
58 } | 58 } |
59 | 59 |
60 bool DirectCompositorFrameSink::BindToClient( | 60 bool DirectCompositorFrameSink::BindToClient( |
61 CompositorFrameSinkClient* client) { | 61 CompositorFrameSinkClient* client) { |
62 DCHECK(thread_checker_.CalledOnValidThread()); | 62 DCHECK(thread_checker_.CalledOnValidThread()); |
63 | 63 |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 } | 95 } |
96 display_->SetLocalFrameId(delegated_local_frame_id_, | 96 display_->SetLocalFrameId(delegated_local_frame_id_, |
97 frame.metadata.device_scale_factor); | 97 frame.metadata.device_scale_factor); |
98 | 98 |
99 factory_.SubmitCompositorFrame( | 99 factory_.SubmitCompositorFrame( |
100 delegated_local_frame_id_, std::move(frame), | 100 delegated_local_frame_id_, std::move(frame), |
101 base::Bind(&DirectCompositorFrameSink::DidDrawCallback, | 101 base::Bind(&DirectCompositorFrameSink::DidDrawCallback, |
102 base::Unretained(this))); | 102 base::Unretained(this))); |
103 } | 103 } |
104 | 104 |
105 void DirectCompositorFrameSink::ForceReclaimResources() { | |
106 if (delegated_local_frame_id_.is_valid()) | |
107 factory_.ClearSurface(); | |
108 } | |
109 | |
110 void DirectCompositorFrameSink::ReturnResources( | 105 void DirectCompositorFrameSink::ReturnResources( |
111 const ReturnedResourceArray& resources) { | 106 const ReturnedResourceArray& resources) { |
112 if (client_) | 107 if (client_) |
113 client_->ReclaimResources(resources); | 108 client_->ReclaimResources(resources); |
114 } | 109 } |
115 | 110 |
116 void DirectCompositorFrameSink::SetBeginFrameSource( | 111 void DirectCompositorFrameSink::SetBeginFrameSource( |
117 BeginFrameSource* begin_frame_source) { | 112 BeginFrameSource* begin_frame_source) { |
118 DCHECK(client_); | 113 DCHECK(client_); |
119 client_->SetBeginFrameSource(begin_frame_source); | 114 client_->SetBeginFrameSource(begin_frame_source); |
(...skipping 14 matching lines...) Expand all Loading... |
134 // This notification is not relevant to our client outside of tests. We | 129 // This notification is not relevant to our client outside of tests. We |
135 // unblock the client from DidDrawCallback() when the surface is going to | 130 // unblock the client from DidDrawCallback() when the surface is going to |
136 // be drawn. | 131 // be drawn. |
137 } | 132 } |
138 | 133 |
139 void DirectCompositorFrameSink::DidDrawCallback() { | 134 void DirectCompositorFrameSink::DidDrawCallback() { |
140 client_->DidReceiveCompositorFrameAck(); | 135 client_->DidReceiveCompositorFrameAck(); |
141 } | 136 } |
142 | 137 |
143 } // namespace cc | 138 } // namespace cc |
OLD | NEW |