Chromium Code Reviews| Index: cc/surfaces/compositor_frame_sink_support.cc |
| diff --git a/cc/surfaces/compositor_frame_sink_support.cc b/cc/surfaces/compositor_frame_sink_support.cc |
| index 896536f039cf4966b2c4204acb4034780d7765e6..0a9684dc4f05b09a72c4584f8f61197aa461fdcd 100644 |
| --- a/cc/surfaces/compositor_frame_sink_support.cc |
| +++ b/cc/surfaces/compositor_frame_sink_support.cc |
| @@ -97,7 +97,7 @@ void CompositorFrameSinkSupport::DidNotProduceFrame(const BeginFrameAck& ack) { |
| begin_frame_source_->DidFinishFrame(this, ack); |
| } |
| -void CompositorFrameSinkSupport::SubmitCompositorFrame( |
| +bool CompositorFrameSinkSupport::SubmitCompositorFrame( |
| const LocalSurfaceId& local_surface_id, |
| CompositorFrame frame) { |
| TRACE_EVENT0("cc", "CompositorFrameSinkSupport::SubmitCompositorFrame"); |
| @@ -131,16 +131,36 @@ void CompositorFrameSinkSupport::SubmitCompositorFrame( |
| if (!create_new_surface) { |
| surface = std::move(current_surface_); |
| } else { |
| - surface = CreateSurface(local_surface_id); |
| + SurfaceId surface_id(frame_sink_id_, local_surface_id); |
| + gfx::Size frame_size = frame.render_pass_list.back()->output_rect.size(); |
| + float device_scale_factor = frame.metadata.device_scale_factor; |
| + SurfaceInfo surface_info(surface_id, device_scale_factor, frame_size); |
| + |
| + if (!surface_info.is_valid()) { |
| + TRACE_EVENT_INSTANT0("cc", "Invalid SurfaceInfo", |
| + TRACE_EVENT_SCOPE_THREAD); |
| + if (current_surface_) |
| + DestroyCurrentSurface(); |
| + ReturnedResourceArray resources; |
| + TransferableResource::ReturnResources(frame.resource_list, &resources); |
| + ReturnResources(resources); |
| + DidReceiveCompositorFrameAck(); |
| + return true; |
|
Fady Samuel
2017/05/23 16:40:47
Why are we returning true here?
Saman Sami
2017/05/23 16:48:11
We only return false when the frame doesn't belong
|
| + } |
| + |
| + surface = CreateSurface(surface_info); |
| } |
| - surface->QueueFrame( |
| + bool result = surface->QueueFrame( |
| std::move(frame), |
| base::Bind(&CompositorFrameSinkSupport::DidReceiveCompositorFrameAck, |
| weak_factory_.GetWeakPtr()), |
| base::BindRepeating(&CompositorFrameSinkSupport::WillDrawSurface, |
| weak_factory_.GetWeakPtr())); |
| + if (!result) |
| + return false; |
| + |
| if (current_surface_) { |
| surface->SetPreviousFrameSurface(current_surface_.get()); |
| DestroyCurrentSurface(); |
| @@ -154,6 +174,8 @@ void CompositorFrameSinkSupport::SubmitCompositorFrame( |
| // See https://crbug.com/703079. |
| if (begin_frame_source_) |
| begin_frame_source_->DidFinishFrame(this, ack); |
| + |
| + return true; |
| } |
| void CompositorFrameSinkSupport::UpdateSurfaceReferences( |
| @@ -331,11 +353,10 @@ void CompositorFrameSinkSupport::UpdateNeedsBeginFramesInternal() { |
| } |
| std::unique_ptr<Surface> CompositorFrameSinkSupport::CreateSurface( |
| - const LocalSurfaceId& local_surface_id) { |
| + const SurfaceInfo& surface_info) { |
| seen_first_frame_activation_ = false; |
| - std::unique_ptr<Surface> surface = surface_manager_->CreateSurface( |
| - weak_factory_.GetWeakPtr(), local_surface_id); |
| - return surface; |
| + return surface_manager_->CreateSurface(weak_factory_.GetWeakPtr(), |
| + surface_info); |
| } |
| void CompositorFrameSinkSupport::DestroyCurrentSurface() { |