| 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 "content/browser/compositor/surface_display_output_surface.h" | 5 #include "content/browser/compositor/surface_display_output_surface.h" |
| 6 | 6 |
| 7 #include "cc/output/compositor_frame.h" | 7 #include "cc/output/compositor_frame.h" |
| 8 #include "cc/output/compositor_frame_ack.h" | 8 #include "cc/output/compositor_frame_ack.h" |
| 9 #include "cc/surfaces/display.h" | 9 #include "cc/surfaces/display.h" |
| 10 #include "cc/surfaces/surface.h" | 10 #include "cc/surfaces/surface.h" |
| 11 #include "cc/surfaces/surface_manager.h" | 11 #include "cc/surfaces/surface_manager.h" |
| 12 | 12 |
| 13 namespace content { | 13 namespace content { |
| 14 | 14 |
| 15 SurfaceDisplayOutputSurface::SurfaceDisplayOutputSurface( | 15 SurfaceDisplayOutputSurface::SurfaceDisplayOutputSurface( |
| 16 cc::SurfaceManager* surface_manager, | 16 cc::SurfaceManager* surface_manager, |
| 17 uint32_t surface_id_namespace, | 17 cc::SurfaceIdAllocator* allocator, |
| 18 const scoped_refptr<cc::ContextProvider>& context_provider) | 18 const scoped_refptr<cc::ContextProvider>& context_provider) |
| 19 : cc::OutputSurface(context_provider, | 19 : cc::OutputSurface(context_provider, |
| 20 scoped_ptr<cc::SoftwareOutputDevice>()), | 20 scoped_ptr<cc::SoftwareOutputDevice>()), |
| 21 display_(NULL), | 21 display_(NULL), |
| 22 surface_manager_(surface_manager), | 22 surface_manager_(surface_manager), |
| 23 factory_(surface_manager, this), | 23 factory_(surface_manager, this), |
| 24 allocator_(surface_id_namespace) { | 24 allocator_(allocator) { |
| 25 capabilities_.delegated_rendering = true; | 25 capabilities_.delegated_rendering = true; |
| 26 capabilities_.max_frames_pending = 1; | 26 capabilities_.max_frames_pending = 1; |
| 27 } | 27 } |
| 28 | 28 |
| 29 SurfaceDisplayOutputSurface::~SurfaceDisplayOutputSurface() { | 29 SurfaceDisplayOutputSurface::~SurfaceDisplayOutputSurface() { |
| 30 client_ = NULL; | 30 client_ = NULL; |
| 31 if (!surface_id_.is_null()) { | 31 if (!surface_id_.is_null()) { |
| 32 factory_.Destroy(surface_id_); | 32 factory_.Destroy(surface_id_); |
| 33 } | 33 } |
| 34 } | 34 } |
| 35 | 35 |
| 36 void SurfaceDisplayOutputSurface::SwapBuffers(cc::CompositorFrame* frame) { | 36 void SurfaceDisplayOutputSurface::SwapBuffers(cc::CompositorFrame* frame) { |
| 37 gfx::Size frame_size = | 37 gfx::Size frame_size = |
| 38 frame->delegated_frame_data->render_pass_list.back()->output_rect.size(); | 38 frame->delegated_frame_data->render_pass_list.back()->output_rect.size(); |
| 39 if (frame_size != display_size_) { | 39 if (frame_size != display_size_) { |
| 40 if (!surface_id_.is_null()) { | 40 if (!surface_id_.is_null()) { |
| 41 factory_.Destroy(surface_id_); | 41 factory_.Destroy(surface_id_); |
| 42 } | 42 } |
| 43 surface_id_ = allocator_.GenerateId(); | 43 surface_id_ = allocator_->GenerateId(); |
| 44 factory_.Create(surface_id_, frame_size); | 44 factory_.Create(surface_id_, frame_size); |
| 45 display_size_ = frame_size; | 45 display_size_ = frame_size; |
| 46 display_->Resize(surface_id_, frame_size); | 46 display_->Resize(surface_id_, frame_size); |
| 47 } | 47 } |
| 48 | 48 |
| 49 scoped_ptr<cc::CompositorFrame> frame_copy(new cc::CompositorFrame()); | 49 scoped_ptr<cc::CompositorFrame> frame_copy(new cc::CompositorFrame()); |
| 50 frame->AssignTo(frame_copy.get()); | 50 frame->AssignTo(frame_copy.get()); |
| 51 factory_.SubmitFrame( | 51 factory_.SubmitFrame( |
| 52 surface_id_, | 52 surface_id_, |
| 53 frame_copy.Pass(), | 53 frame_copy.Pass(), |
| 54 base::Bind(&SurfaceDisplayOutputSurface::SwapBuffersComplete, | 54 base::Bind(&SurfaceDisplayOutputSurface::SwapBuffersComplete, |
| 55 base::Unretained(this))); | 55 base::Unretained(this))); |
| 56 | 56 |
| 57 client_->DidSwapBuffers(); | 57 client_->DidSwapBuffers(); |
| 58 } | 58 } |
| 59 | 59 |
| 60 void SurfaceDisplayOutputSurface::ReturnResources( | 60 void SurfaceDisplayOutputSurface::ReturnResources( |
| 61 const cc::ReturnedResourceArray& resources) { | 61 const cc::ReturnedResourceArray& resources) { |
| 62 cc::CompositorFrameAck ack; | 62 cc::CompositorFrameAck ack; |
| 63 ack.resources = resources; | 63 ack.resources = resources; |
| 64 if (client_) | 64 if (client_) |
| 65 client_->ReclaimResources(&ack); | 65 client_->ReclaimResources(&ack); |
| 66 } | 66 } |
| 67 | 67 |
| 68 void SurfaceDisplayOutputSurface::SwapBuffersComplete() { | 68 void SurfaceDisplayOutputSurface::SwapBuffersComplete() { |
| 69 client_->DidSwapBuffersComplete(); | 69 client_->DidSwapBuffersComplete(); |
| 70 } | 70 } |
| 71 | 71 |
| 72 } // namespace content | 72 } // namespace content |
| OLD | NEW |