Revert "[Tizen] Revert "Support multiple window rendering""
[platform/core/uifw/dali-adaptor.git] / dali / internal / window-system / common / window-render-surface.h
1 #ifndef DALI_INTERNAL_WINDOWSYSTEM_COMMON_WINDOW_RENDER_SURFACE_H
2 #define DALI_INTERNAL_WINDOWSYSTEM_COMMON_WINDOW_RENDER_SURFACE_H
3
4 /*
5  * Copyright (c) 2018 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 // INTERNAL INCLUDES
22 #include <dali/internal/graphics/common/graphics-interface.h>
23
24 #ifdef DALI_ADAPTOR_COMPILATION
25 #include <dali/integration-api/egl-interface.h>
26 #include <dali/integration-api/render-surface-interface.h>
27 #else
28 #include <dali/integration-api/adaptors/egl-interface.h>
29 #include <dali/integration-api/adaptors/render-surface-interface.h>
30 #endif
31
32 // EXTERNAL INCLUDES
33 #include <dali/public-api/signals/connection-tracker.h>
34 #include <dali/public-api/signals/dali-signal.h>
35
36 namespace Dali
37 {
38
39 class TriggerEventInterface;
40
41 namespace Internal
42 {
43 namespace Adaptor
44 {
45
46 class WindowBase;
47 class AdaptorInternalServices;
48
49 /**
50  * Window interface of render surface.
51  */
52 class WindowRenderSurface : public Dali::RenderSurfaceInterface, public ConnectionTracker
53 {
54 public:
55
56   typedef Signal< void ( ) > OutputSignalType;
57
58   /**
59     * Uses an window surface to render to.
60     * @param [in] positionSize the position and size of the surface
61     * @param [in] surface can be a window or pixmap.
62     * @param [in] isTransparent if it is true, surface has 32 bit color depth, otherwise, 24 bit
63     */
64   WindowRenderSurface( Dali::PositionSize positionSize, Any surface, bool isTransparent = false );
65
66   /**
67    * @brief Destructor
68    */
69   virtual ~WindowRenderSurface();
70
71 public: // API
72
73   /**
74    * @brief Get the native window handle
75    * @return The native window handle
76    */
77   Any GetNativeWindow();
78
79   /**
80    * @brief Get the native window id
81    * @return The native window id
82    */
83   int GetNativeWindowId();
84
85   /**
86    * @brief Map window
87    */
88   void Map();
89
90   /**
91    * @brief Sets the render notification trigger to call when render thread is completed a frame
92    * @param renderNotification to use
93    */
94   void SetRenderNotification( TriggerEventInterface* renderNotification );
95
96   /**
97    * @brief Sets whether the surface is transparent or not.
98    * @param[in] transparent Whether the surface is transparent
99    */
100   void SetTransparency( bool transparent );
101
102   /**
103    * Request surface rotation
104    * @param[in] angle A new angle of the surface
105    * @param[in] width A new width of the surface
106    * @param[in] height A new height of the surface
107    */
108   void RequestRotation( int angle, int width, int height );
109
110   /**
111    * @brief Gets the window base object
112    * @return The window base object
113    */
114   WindowBase* GetWindowBase();
115
116   /**
117    * @brief This signal is emitted when the output is transformed.
118    */
119   OutputSignalType& OutputTransformedSignal();
120
121 public: // from Dali::Integration::RenderSurface
122
123   /**
124    * @copydoc Dali::Integration::RenderSurface::GetPositionSize()
125    */
126   virtual PositionSize GetPositionSize() const override;
127
128   /**
129    */
130   virtual void GetDpi( unsigned int& dpiHorizontal, unsigned int& dpiVertical ) override;
131
132   /**
133    * @copydoc Dali::Integration::RenderSurface::InitializeGraphics()
134    */
135   virtual void InitializeGraphics() override;
136
137   /**
138    * @copydoc Dali::Integration::RenderSurface::CreateSurface()
139    */
140   virtual void CreateSurface() override;
141
142   /**
143    * @copydoc Dali::Integration::RenderSurface::DestroySurface()
144    */
145   virtual void DestroySurface() override;
146
147   /**
148    * @copydoc Dali::Integration::RenderSurface::ReplaceGraphicsSurface()
149    */
150   virtual bool ReplaceGraphicsSurface() override;
151
152   /**
153    * @copydoc Dali::Integration::RenderSurface::MoveResize()
154    */
155   virtual void MoveResize( Dali::PositionSize positionSize) override;
156
157   /**
158    * @copydoc Dali::Integration::RenderSurface::StartRender()
159    */
160   virtual void StartRender() override;
161
162   /**
163    * @copydoc Dali::Integration::RenderSurface::PreRender()
164    */
165   virtual bool PreRender( bool resizingSurface ) override;
166
167   /**
168    * @copydoc Dali::Integration::RenderSurface::PostRender()
169    */
170   virtual void PostRender( bool renderToFbo, bool replacingSurface, bool resizingSurface );
171
172   /**
173    * @copydoc Dali::Integration::RenderSurface::StopRender()
174    */
175   virtual void StopRender() override;
176
177   /**
178    * @copydoc Dali::Integration::RenderSurface::SetThreadSynchronization
179    */
180   virtual void SetThreadSynchronization( ThreadSynchronizationInterface& threadSynchronization ) override;
181
182   /**
183    * @copydoc Dali::Integration::RenderSurface::ReleaseLock()
184    */
185   virtual void ReleaseLock() override;
186
187   /**
188    * @copydoc Dali::Integration::RenderSurface::GetSurfaceType()
189    */
190   virtual Integration::RenderSurface::Type GetSurfaceType() override;
191
192   /**
193    * @copydoc Dali::Integration::RenderSurface::MakeContextCurrent()
194    */
195   virtual void MakeContextCurrent() override;
196
197   /**
198    * @copydoc Dali::Integration::RenderSurface::GetDepthBufferRequired()
199    */
200   virtual Integration::DepthBufferAvailable GetDepthBufferRequired() override;
201
202   /**
203    * @copydoc Dali::Integration::RenderSurface::GetStencilBufferRequired()
204    */
205   virtual Integration::StencilBufferAvailable GetStencilBufferRequired() override;
206
207 private:
208
209   /**
210    * @brief Second stage construction
211    */
212   void Initialize( Any surface );
213
214   /**
215    * Notify output is transformed.
216    */
217   void OutputTransformed();
218
219   /**
220    * @brief Used as the callback for the rotation-trigger.
221    */
222   void ProcessRotationRequest();
223
224 protected:
225
226   // Undefined
227   WindowRenderSurface(const WindowRenderSurface&) = delete;
228
229   // Undefined
230   WindowRenderSurface& operator=(const WindowRenderSurface& rhs) = delete;
231
232 private: // Data
233
234   EglInterface*                   mEGL;
235   Dali::DisplayConnection*        mDisplayConnection;
236   PositionSize                    mPositionSize;       ///< Position
237   std::unique_ptr< WindowBase >   mWindowBase;
238   ThreadSynchronizationInterface* mThreadSynchronization;
239   TriggerEventInterface*          mRenderNotification; ///< Render notification trigger
240   TriggerEventInterface*          mRotationTrigger;
241   GraphicsInterface*              mGraphics;           ///< Graphics interface
242   EGLSurface                      mEGLSurface;
243   EGLContext                      mEGLContext;
244   ColorDepth                      mColorDepth;         ///< Color depth of surface (32 bit or 24 bit)
245   OutputSignalType                mOutputTransformedSignal;
246   int                             mRotationAngle;
247   int                             mScreenRotationAngle;
248   bool                            mOwnSurface;         ///< Whether we own the surface (responsible for deleting it)
249   bool                            mRotationSupported;
250   bool                            mRotationFinished;
251   bool                            mScreenRotationFinished;
252   bool                            mResizeFinished;
253
254 }; // class WindowRenderSurface
255
256 } // namespace Adaptor
257
258 } // namespace internal
259
260 } // namespace Dali
261
262 #endif // DALI_INTERNAL_WINDOWSYSTEM_COMMON_WINDOW_RENDER_SURFACE_H