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

Side by Side Diff: mojo/converters/surfaces/custom_surface_converter.h

Issue 2012113003: mojo/converters/surfaces -> components/mus/public/cpp/surfaces (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@converters_events
Patch Set: . Created 4 years, 6 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
« no previous file with comments | « mojo/converters/surfaces/OWNERS ('k') | mojo/converters/surfaces/mojo_surfaces_export.h » ('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 2015 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 #ifndef MOJO_CONVERTERS_SURFACES_CUSTOM_SURFACE_CONVERTER_H_
6 #define MOJO_CONVERTERS_SURFACES_CUSTOM_SURFACE_CONVERTER_H_
7
8 namespace cc {
9 class RenderPass;
10 class SharedQuadState;
11 } // namespace cc
12
13 namespace mojo {
14
15 // Classes that inherit from this converter can override the default behavior
16 // for converting a mojo::SurfaceDrawState to something cc understands.
17 class CustomSurfaceConverter {
18 public:
19 virtual bool ConvertSurfaceDrawQuad(
20 const mus::mojom::QuadPtr& input,
21 const mus::mojom::CompositorFrameMetadataPtr& metadata,
22 cc::SharedQuadState* sqs,
23 cc::RenderPass* render_pass) = 0;
24
25 protected:
26 virtual ~CustomSurfaceConverter() {}
27 };
28
29 } // namespace mojo
30
31 #endif // MOJO_CONVERTERS_SURFACES_CUSTOM_SURFACE_CONVERTER_H_
OLDNEW
« no previous file with comments | « mojo/converters/surfaces/OWNERS ('k') | mojo/converters/surfaces/mojo_surfaces_export.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698