| // Copyright 2014 The Chromium Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "mojo/services/surfaces/surfaces_impl.h" |
| |
| #include "cc/output/compositor_frame.h" |
| #include "cc/resources/returned_resource.h" |
| #include "cc/surfaces/display.h" |
| #include "cc/surfaces/surface_id_allocator.h" |
| #include "mojo/cc/context_provider_mojo.h" |
| #include "mojo/cc/direct_output_surface.h" |
| #include "mojo/converters/geometry/geometry_type_converters.h" |
| #include "mojo/converters/surfaces/surfaces_type_converters.h" |
| |
| namespace mojo { |
| |
| SurfacesImpl::SurfacesImpl(cc::SurfaceManager* manager, |
| uint32_t id_namespace, |
| Client* client, |
| SurfacePtr* surface) |
| : manager_(manager), |
| factory_(manager, this), |
| id_namespace_(id_namespace), |
| client_(client), |
| binding_(this, surface) { |
| } |
| |
| SurfacesImpl::~SurfacesImpl() { |
| client_->OnDisplayBeingDestroyed(display_.get()); |
| factory_.DestroyAll(); |
| } |
| |
| void SurfacesImpl::CreateSurface(SurfaceIdPtr id, mojo::SizePtr size) { |
| cc::SurfaceId cc_id = id.To<cc::SurfaceId>(); |
| if (cc::SurfaceIdAllocator::NamespaceForId(cc_id) != id_namespace_) { |
| // Bad message, do something bad to the caller? |
| NOTREACHED(); |
| return; |
| } |
| factory_.Create(id.To<cc::SurfaceId>(), size.To<gfx::Size>()); |
| } |
| |
| void SurfacesImpl::SubmitFrame(SurfaceIdPtr id, FramePtr frame_ptr) { |
| cc::SurfaceId cc_id = id.To<cc::SurfaceId>(); |
| if (cc::SurfaceIdAllocator::NamespaceForId(cc_id) != id_namespace_) { |
| // Bad message, do something bad to the caller? |
| LOG(FATAL) << "Received frame for id " << cc_id.id << " namespace " |
| << cc::SurfaceIdAllocator::NamespaceForId(cc_id) |
| << " should be namespace " << id_namespace_; |
| return; |
| } |
| factory_.SubmitFrame(id.To<cc::SurfaceId>(), |
| frame_ptr.To<scoped_ptr<cc::CompositorFrame> >(), |
| base::Closure()); |
| client_->FrameSubmitted(); |
| } |
| |
| void SurfacesImpl::DestroySurface(SurfaceIdPtr id) { |
| cc::SurfaceId cc_id = id.To<cc::SurfaceId>(); |
| if (cc::SurfaceIdAllocator::NamespaceForId(cc_id) != id_namespace_) { |
| // Bad message, do something bad to the caller? |
| NOTREACHED(); |
| return; |
| } |
| factory_.Destroy(id.To<cc::SurfaceId>()); |
| } |
| |
| void SurfacesImpl::CreateGLES2BoundSurface(CommandBufferPtr gles2_client, |
| SurfaceIdPtr id, |
| mojo::SizePtr size) { |
| command_buffer_handle_ = gles2_client.PassMessagePipe(); |
| |
| cc::SurfaceId cc_id = id.To<cc::SurfaceId>(); |
| if (cc::SurfaceIdAllocator::NamespaceForId(cc_id) != id_namespace_) { |
| // Bad message, do something bad to the caller? |
| LOG(FATAL) << "Received request for id " << cc_id.id << " namespace " |
| << cc::SurfaceIdAllocator::NamespaceForId(cc_id) |
| << " should be namespace " << id_namespace_; |
| return; |
| } |
| if (!display_) { |
| cc::RendererSettings settings; |
| display_.reset(new cc::Display(this, manager_, nullptr, nullptr, settings)); |
| client_->SetDisplay(display_.get()); |
| display_->Initialize(make_scoped_ptr(new DirectOutputSurface( |
| new ContextProviderMojo(command_buffer_handle_.Pass())))); |
| } |
| factory_.Create(cc_id, size.To<gfx::Size>()); |
| display_->Resize(cc_id, size.To<gfx::Size>(), 1.f); |
| } |
| |
| void SurfacesImpl::ReturnResources(const cc::ReturnedResourceArray& resources) { |
| Array<ReturnedResourcePtr> ret(resources.size()); |
| for (size_t i = 0; i < resources.size(); ++i) { |
| ret[i] = ReturnedResource::From(resources[i]); |
| } |
| binding_.client()->ReturnResources(ret.Pass()); |
| } |
| |
| void SurfacesImpl::DisplayDamaged() { |
| } |
| |
| void SurfacesImpl::DidSwapBuffers() { |
| } |
| |
| void SurfacesImpl::DidSwapBuffersComplete() { |
| } |
| |
| void SurfacesImpl::CommitVSyncParameters(base::TimeTicks timebase, |
| base::TimeDelta interval) { |
| } |
| |
| void SurfacesImpl::OutputSurfaceLost() { |
| } |
| |
| void SurfacesImpl::SetMemoryPolicy(const cc::ManagedMemoryPolicy& policy) { |
| } |
| |
| } // namespace mojo |