OLD | NEW |
| (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 #ifndef COMPONENTS_MUS_PUBLIC_CPP_OUTPUT_SURFACE_H_ | |
6 #define COMPONENTS_MUS_PUBLIC_CPP_OUTPUT_SURFACE_H_ | |
7 | |
8 #include "base/macros.h" | |
9 #include "cc/output/output_surface.h" | |
10 #include "cc/surfaces/surface_id.h" | |
11 #include "components/mus/public/cpp/window_surface.h" | |
12 #include "components/mus/public/cpp/window_surface_client.h" | |
13 #include "mojo/public/cpp/bindings/binding.h" | |
14 | |
15 namespace mus { | |
16 | |
17 class OutputSurface : public cc::OutputSurface, public WindowSurfaceClient { | |
18 public: | |
19 OutputSurface(const scoped_refptr<cc::ContextProvider>& context_provider, | |
20 std::unique_ptr<WindowSurface> surface); | |
21 ~OutputSurface() override; | |
22 | |
23 // cc::OutputSurface implementation. | |
24 void SwapBuffers(cc::CompositorFrame frame) override; | |
25 bool BindToClient(cc::OutputSurfaceClient* client) override; | |
26 void DetachFromClient() override; | |
27 void BindFramebuffer() override; | |
28 uint32_t GetFramebufferCopyTextureFormat() override; | |
29 | |
30 private: | |
31 // WindowSurfaceClient implementation: | |
32 void OnResourcesReturned( | |
33 WindowSurface* surface, | |
34 mojo::Array<cc::ReturnedResource> resources) override; | |
35 | |
36 void SwapBuffersComplete(); | |
37 | |
38 std::unique_ptr<WindowSurface> surface_; | |
39 | |
40 DISALLOW_COPY_AND_ASSIGN(OutputSurface); | |
41 }; | |
42 | |
43 } // namespace mus | |
44 | |
45 #endif // COMPONENTS_MUS_PUBLIC_CPP_OUTPUT_SURFACE_H_ | |
OLD | NEW |