TYPE3
[iec.git] / src / type3_AndroidCloud / anbox-master / src / anbox / graphics / layer_composer.h
1 /*
2  * Copyright (C) 2016 Simon Fels <morphis@gravedo.de>
3  *
4  * This program is free software: you can redistribute it and/or modify it
5  * under the terms of the GNU General Public License version 3, as published
6  * by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranties of
10  * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
11  * PURPOSE.  See the GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program.  If not, see <http://www.gnu.org/licenses/>.
15  *
16  */
17
18 #ifndef ANBOX_GRAPHICS_LAYER_COMPOSER_H_
19 #define ANBOX_GRAPHICS_LAYER_COMPOSER_H_
20
21 #include "anbox/graphics/renderer.h"
22
23 #include <memory>
24 #include <map>
25
26 namespace anbox {
27 namespace wm {
28 class Manager;
29 class Window;
30 }  // namespace wm
31 namespace graphics {
32 class LayerComposer {
33  public:
34   class Strategy {
35    public:
36     typedef std::map<std::shared_ptr<wm::Window>, RenderableList> WindowRenderableList;
37
38     virtual ~Strategy() {}
39     virtual WindowRenderableList process_layers(const RenderableList &renderables) = 0;
40   };
41
42   LayerComposer(const std::shared_ptr<Renderer> renderer,
43                 const std::shared_ptr<Strategy> &strategy);
44   ~LayerComposer();
45
46   void submit_layers(const RenderableList &renderables);
47
48  private:
49   std::shared_ptr<Renderer> renderer_;
50   std::shared_ptr<Strategy> strategy_;
51 };
52 }  // namespace graphics
53 }  // namespace anbox
54
55 #endif