Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Side by Side Diff: mojo/cc/output_surface_mojo.cc

Issue 504443002: Update mojo surfaces bindings and mojo/cc/ glue (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: gn fixes Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « mojo/cc/output_surface_mojo.h ('k') | mojo/examples/surfaces_app/child_gl_app.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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.
4
5 #include "mojo/cc/output_surface_mojo.h"
6
7 #include "cc/output/compositor_frame.h"
8 #include "cc/output/output_surface_client.h"
9 #include "mojo/services/public/cpp/geometry/geometry_type_converters.h"
10 #include "mojo/services/public/cpp/surfaces/surfaces_type_converters.h"
11
12 namespace mojo {
13
14 OutputSurfaceMojo::OutputSurfaceMojo(
15 const scoped_refptr<cc::ContextProvider>& context_provider,
16 SurfacePtr surface,
17 uint32_t id_namespace)
18 : cc::OutputSurface(context_provider),
19 surface_(surface.Pass()),
20 id_allocator_(id_namespace) {
21 surface_.set_client(this);
22 }
23
24 OutputSurfaceMojo::~OutputSurfaceMojo() {
25 }
26
27 void OutputSurfaceMojo::ReturnResources(Array<ReturnedResourcePtr> resources) {
28 }
29
30 void OutputSurfaceMojo::SwapBuffers(cc::CompositorFrame* frame) {
31 gfx::Size frame_size =
32 frame->delegated_frame_data->render_pass_list.back()->output_rect.size();
33 if (frame_size != surface_size_) {
34 if (!surface_id_.is_null()) {
35 surface_->DestroySurface(SurfaceId::From(surface_id_));
36 }
37 surface_id_ = id_allocator_.GenerateId();
38 surface_->CreateSurface(SurfaceId::From(surface_id_),
39 Size::From(frame_size));
40 surface_size_ = frame_size;
41 }
42
43 surface_->SubmitFrame(SurfaceId::From(surface_id_), Frame::From(*frame));
44
45 client_->DidSwapBuffers();
46 client_->DidSwapBuffersComplete();
47 }
48
49 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/cc/output_surface_mojo.h ('k') | mojo/examples/surfaces_app/child_gl_app.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698