cc: Initialize eviction_priority_queue_is_up_to_date_ in TileManager
[chromium-blink-merge.git] / mojo / cc / output_surface_mojo.cc
blob99789925ce3acf303c7b6fc0804b7d68681f35bc
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
3 // found in the LICENSE file.
5 #include "mojo/cc/output_surface_mojo.h"
7 #include "cc/output/compositor_frame.h"
8 #include "cc/output/output_surface_client.h"
9 #include "mojo/converters/geometry/geometry_type_converters.h"
10 #include "mojo/converters/surfaces/surfaces_type_converters.h"
12 namespace mojo {
14 OutputSurfaceMojo::OutputSurfaceMojo(
15 OutputSurfaceMojoClient* client,
16 const scoped_refptr<cc::ContextProvider>& context_provider,
17 SurfacePtr surface,
18 uint32_t id_namespace)
19 : cc::OutputSurface(context_provider),
20 output_surface_mojo_client_(client),
21 surface_(surface.Pass()),
22 id_allocator_(id_namespace) {
23 capabilities_.delegated_rendering = true;
24 capabilities_.max_frames_pending = 1;
27 OutputSurfaceMojo::~OutputSurfaceMojo() {
30 void OutputSurfaceMojo::SetIdNamespace(uint32_t id_namespace) {
33 void OutputSurfaceMojo::ReturnResources(Array<ReturnedResourcePtr> resources) {
36 bool OutputSurfaceMojo::BindToClient(cc::OutputSurfaceClient* client) {
37 surface_.set_client(this);
38 return cc::OutputSurface::BindToClient(client);
41 void OutputSurfaceMojo::SwapBuffers(cc::CompositorFrame* frame) {
42 gfx::Size frame_size =
43 frame->delegated_frame_data->render_pass_list.back()->output_rect.size();
44 if (frame_size != surface_size_) {
45 if (!surface_id_.is_null()) {
46 surface_->DestroySurface(SurfaceId::From(surface_id_));
48 surface_id_ = id_allocator_.GenerateId();
49 surface_->CreateSurface(SurfaceId::From(surface_id_));
50 output_surface_mojo_client_->DidCreateSurface(surface_id_);
51 surface_size_ = frame_size;
54 surface_->SubmitFrame(SurfaceId::From(surface_id_), Frame::From(*frame),
55 mojo::Closure());
57 client_->DidSwapBuffers();
58 client_->DidSwapBuffersComplete();
61 } // namespace mojo