[3.0] Add native source render surface for wayland
[platform/core/uifw/dali-adaptor.git] / adaptors / integration-api / wayland / native-source-render-surface.h
1 #ifndef __DALI_TIZEN_BUFFER_RENDER_SURFACE_H__
2 #define __DALI_TIZEN_BUFFER_RENDER_SURFACE_H__
3
4 /*
5  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // EXTERNAL INCLUDES
22 #include <tbm_surface.h>
23 #include <dali/public-api/common/dali-common.h>
24
25 // INTERNAL INCLUDES
26 #ifdef DALI_ADAPTOR_COMPILATION
27 #include <render-surface.h>
28 #include <egl-interface.h>
29 #else
30 #include <dali/devel-api/adaptor-framework/render-surface.h>
31 #include <dali/integration-api/adaptors/egl-interface.h>
32 #endif
33
34 namespace Dali
35 {
36
37 class TriggerEventInterface;
38
39 /**
40  * Ecore X11 implementation of render surface.
41  */
42 class DALI_IMPORT_API NativeSourceRenderSurface : public Dali::RenderSurface
43 {
44 public:
45
46   /**
47     * Uses an Wayland surface to render to.
48     * @param [in] positionSize the position and size of the surface
49     * @param [in] name optional name of surface passed in
50     * @param [in] isTransparent if it is true, surface has 32 bit color depth, otherwise, 24 bit
51     */
52   NativeSourceRenderSurface( Dali::PositionSize positionSize,
53                              const std::string& name,
54                              bool isTransparent = false );
55
56   /**
57    * @copydoc Dali::RenderSurface::~RenderSurface
58    */
59   virtual ~NativeSourceRenderSurface();
60
61 public: // API
62
63   /**
64    * @brief Sets the render notification trigger to call when render thread is completed a frame
65    *
66    * @param renderNotification to use
67    */
68   void SetRenderNotification( TriggerEventInterface* renderNotification );
69
70   /**
71    */
72   virtual tbm_surface_h GetDrawable();
73
74   /**
75    * @brief GetSurface
76    *
77    * @return pixmap
78    */
79   virtual Any GetSurface();
80
81   virtual void ReleaseNativeSource();
82
83 public: // from Dali::RenderSurface
84
85   /**
86    * @copydoc Dali::RenderSurface::InitializeEgl()
87    */
88   virtual void InitializeEgl( EglInterface& egl );
89
90   /**
91    * @copydoc Dali::RenderSurface::CreateEglSurface()
92    */
93   virtual void CreateEglSurface( EglInterface& egl );
94
95   /**
96    * @copydoc Dali::RenderSurface::DestroyEglSurface()
97    */
98   virtual void DestroyEglSurface( EglInterface& egl );
99
100   /**
101    * @copydoc Dali::RenderSurface::ReplaceEGLSurface()
102    */
103   virtual bool ReplaceEGLSurface( EglInterface& egl );
104
105   /**
106    * @copydoc Dali::RenderSurface::StartRender()
107    */
108   virtual void StartRender();
109
110   /**
111    * @copydoc Dali::RenderSurface::PreRender()
112    */
113   virtual bool PreRender( EglInterface& egl, Integration::GlAbstraction& glAbstraction );
114
115   /**
116    * @copydoc Dali::RenderSurface::PostRender()
117    */
118   virtual void PostRender( EglInterface& egl, Integration::GlAbstraction& glAbstraction, DisplayConnection* displayConnection, bool replacingSurface );
119
120   /**
121    * @copydoc Dali::RenderSurface::StopRender()
122    */
123   virtual void StopRender();
124
125   /**
126    * @copydoc Dali::RenderSurface::SetThreadSynchronization
127    */
128   virtual void SetThreadSynchronization( ThreadSynchronizationInterface& threadSynchronization );
129
130   virtual RenderSurface::Type GetSurfaceType();
131
132   virtual PositionSize GetPositionSize() const;
133
134   virtual void MoveResize( Dali::PositionSize positionSize );
135
136   virtual void SetViewMode( ViewMode viewMode );
137
138 private:
139
140   /**
141    * Release any locks.
142    */
143   void ReleaseLock();
144
145   /**
146    * Create XPixmap
147    */
148   virtual void CreateWlRenderable();
149
150 private: // Data
151
152   struct Impl;
153
154   Impl* mImpl;
155
156 };
157
158 } // namespace Dali
159
160 #endif // __DALI_TIZEN_BUFFER_RENDER_SURFACE_H__