Mir
nested_output.h
Go to the documentation of this file.
1 /*
2  * Copyright © 2013 Canonical Ltd.
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,
6  * as published by the Free Software Foundation.
7  *
8  * This program is distributed in the hope that it will be useful,
9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  *
16  * Authored by: Alan Griffiths <alan@octopull.co.uk>
17  */
18 
19 #ifndef MIR_GRAPHICS_NESTED_DETAIL_NESTED_OUTPUT_H_
20 #define MIR_GRAPHICS_NESTED_DETAIL_NESTED_OUTPUT_H_
21 
22 #include "nested_display.h"
23 
24 namespace mir
25 {
26 namespace graphics
27 {
28 namespace nested
29 {
30 class HostSurface;
31 
32 namespace detail
33 {
34 
36 {
37 public:
39  EGLDisplayHandle const& egl_display,
40  std::shared_ptr<HostSurface> const& host_surface,
41  geometry::Rectangle const& area,
42  std::shared_ptr<input::InputDispatcher> const& input_dispatcher,
43  MirPixelFormat preferred_format);
44 
45  ~NestedOutput() noexcept;
46 
47  geometry::Rectangle view_area() const override;
48  void make_current() override;
49  void release_current() override;
50  void gl_swap_buffers() override;
51  void flip() override;
52  MirOrientation orientation() const override;
53  bool uses_alpha() const override;
54 
55  bool post_renderables_if_optimizable(RenderableList const& renderlist) override;
56 
57  NestedOutput(NestedOutput const&) = delete;
58  NestedOutput operator=(NestedOutput const&) = delete;
59 private:
60  bool const uses_alpha_;
61  EGLDisplayHandle const& egl_display;
62  std::shared_ptr<HostSurface> const host_surface;
63  EGLConfig const egl_config;
64  EGLContextStore const egl_context;
65  geometry::Rectangle const area;
66  std::shared_ptr<input::InputDispatcher> const dispatcher;
67  EGLSurfaceHandle const egl_surface;
68 
69  static void event_thunk(MirSurface* surface, MirEvent const* event, void* context);
70  void mir_event(MirEvent const& event);
71 };
72 }
73 }
74 }
75 }
76 
77 #endif /* MIR_GRAPHICS_NESTED_DETAIL_NESTED_OUTPUT_H_ */
All things Mir.
Definition: buffer_stream.h:37
Definition: mir_surface.h:86
Interface to an output framebuffer.
Definition: display_buffer.h:38
~NestedOutput() noexcept
Definition: nested_output.cpp:96
MirOrientation
Direction relative to the "natural" orientation of the display.
Definition: common.h:142
MirOrientation orientation() const override
Returns the orientation of the display buffer relative to how the user should see it (the orientation...
Definition: nested_output.cpp:82
void make_current() override
Makes the DisplayBuffer the current GL rendering target.
Definition: nested_output.cpp:57
std::list< std::shared_ptr< Renderable > > RenderableList
Definition: renderable.h:80
void release_current() override
Releases the current GL rendering target.
Definition: nested_output.cpp:63
bool uses_alpha() const override
Returns true if the display buffer has an alpha channel and the alpha channel will be read from at so...
Definition: nested_output.cpp:91
Definition: egl_resources.h:29
MirPixelFormat
The order of components in a format enum matches the order of the components as they would be written...
Definition: common.h:127
void gl_swap_buffers() override
Swap buffers for OpenGL rendering.
Definition: nested_output.cpp:68
geometry::Rectangle view_area() const override
The area the DisplayBuffer occupies in the virtual screen space.
Definition: nested_output.cpp:52
Definition: rectangle.h:33
void flip() override
After gl_swap_buffers, flip the new front buffer to the screen This most likely involves a wait for v...
Definition: nested_output.cpp:73
bool post_renderables_if_optimizable(RenderableList const &renderlist) override
This will render renderlist to the screen and post the result to the screen if there is a hardware op...
Definition: nested_output.cpp:77
Definition: event_deprecated.h:237
NestedOutput operator=(NestedOutput const &)=delete
NestedOutput(EGLDisplayHandle const &egl_display, std::shared_ptr< HostSurface > const &host_surface, geometry::Rectangle const &area, std::shared_ptr< input::InputDispatcher > const &input_dispatcher, MirPixelFormat preferred_format)
Definition: nested_output.cpp:33
Definition: nested_output.h:35

Copyright © 2012,2013 Canonical Ltd.
Generated on Tue Mar 24 16:15:19 UTC 2015