6cab258dc95bd4f36900fa0cbc9069691595aa78
[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) 2020 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 <dali/public-api/signals/connection-tracker.h>
23 #include <dali/public-api/signals/dali-signal.h>
24
25 // INTERNAL INCLUDES
26 #include <dali/integration-api/adaptor-framework/egl-interface.h>
27 #include <dali/integration-api/adaptor-framework/render-surface-interface.h>
28 #include <dali/internal/graphics/common/graphics-interface.h>
29
30 namespace Dali
31 {
32
33 class TriggerEventInterface;
34
35 namespace Internal
36 {
37 namespace Adaptor
38 {
39
40 class WindowBase;
41 class AdaptorInternalServices;
42
43 /**
44  * Window interface of render surface.
45  */
46 class WindowRenderSurface : public Dali::RenderSurfaceInterface, public ConnectionTracker
47 {
48 public:
49
50   typedef Signal< void ( ) > OutputSignalType;
51
52   /**
53     * Uses an window surface to render to.
54     * @param [in] positionSize the position and size of the surface
55     * @param [in] surface can be a window or pixmap.
56     * @param [in] isTransparent if it is true, surface has 32 bit color depth, otherwise, 24 bit
57     */
58   WindowRenderSurface( Dali::PositionSize positionSize, Any surface, bool isTransparent = false );
59
60   /**
61    * @brief Destructor
62    */
63   virtual ~WindowRenderSurface();
64
65 public: // API
66
67   /**
68    * @brief Get the native window handle
69    * @return The native window handle
70    */
71   Any GetNativeWindow();
72
73   /**
74    * @brief Get the native window id
75    * @return The native window id
76    */
77   int GetNativeWindowId();
78
79   /**
80    * @brief Map window
81    */
82   void Map();
83
84   /**
85    * @brief Sets the render notification trigger to call when render thread is completed a frame
86    * @param renderNotification to use
87    */
88   void SetRenderNotification( TriggerEventInterface* renderNotification );
89
90   /**
91    * @brief Sets whether the surface is transparent or not.
92    * @param[in] transparent Whether the surface is transparent
93    */
94   void SetTransparency( bool transparent );
95
96   /**
97    * Request surface rotation
98    * @param[in] angle A new angle of the surface
99    * @param[in] width A new width of the surface
100    * @param[in] height A new height of the surface
101    */
102   void RequestRotation( int angle, int width, int height );
103
104   /**
105    * @brief Gets the window base object
106    * @return The window base object
107    */
108   WindowBase* GetWindowBase();
109
110   /**
111    * @brief This signal is emitted when the output is transformed.
112    */
113   OutputSignalType& OutputTransformedSignal();
114
115 public: // from Dali::RenderSurfaceInterface
116
117   /**
118    * @copydoc Dali::RenderSurfaceInterface::GetPositionSize()
119    */
120   virtual PositionSize GetPositionSize() const override;
121
122   /**
123    */
124   virtual void GetDpi( unsigned int& dpiHorizontal, unsigned int& dpiVertical ) override;
125
126   /**
127    * @brief Return the orientation of the surface.
128    * @return The orientation
129    */
130   virtual int GetOrientation() const override;
131
132   /**
133    * @copydoc Dali::RenderSurfaceInterface::InitializeGraphics()
134    */
135   virtual void InitializeGraphics() override;
136
137   /**
138    * @copydoc Dali::RenderSurfaceInterface::CreateSurface()
139    */
140   virtual void CreateSurface() override;
141
142   /**
143    * @copydoc Dali::RenderSurfaceInterface::DestroySurface()
144    */
145   virtual void DestroySurface() override;
146
147   /**
148    * @copydoc Dali::RenderSurfaceInterface::ReplaceGraphicsSurface()
149    */
150   virtual bool ReplaceGraphicsSurface() override;
151
152   /**
153    * @copydoc Dali::RenderSurfaceInterface::MoveResize()
154    */
155   virtual void MoveResize( Dali::PositionSize positionSize) override;
156
157   /**
158    * @copydoc Dali::RenderSurfaceInterface::StartRender()
159    */
160   virtual void StartRender() override;
161
162   /**
163    * @copydoc Dali::RenderSurfaceInterface::PreRender()
164    */
165   virtual bool PreRender( bool resizingSurface ) override;
166
167   /**
168    * @copydoc Dali::RenderSurfaceInterface::PostRender()
169    */
170   virtual void PostRender( bool renderToFbo, bool replacingSurface, bool resizingSurface );
171
172   /**
173    * @copydoc Dali::RenderSurfaceInterface::StopRender()
174    */
175   virtual void StopRender() override;
176
177   /**
178    * @copydoc Dali::RenderSurfaceInterface::SetThreadSynchronization
179    */
180   virtual void SetThreadSynchronization( ThreadSynchronizationInterface& threadSynchronization ) override;
181
182   /**
183    * @copydoc Dali::RenderSurfaceInterface::ReleaseLock()
184    */
185   virtual void ReleaseLock() override;
186
187   /**
188    * @copydoc Dali::RenderSurfaceInterface::GetSurfaceType()
189    */
190   virtual Dali::RenderSurfaceInterface::Type GetSurfaceType() override;
191
192   /**
193    * @copydoc Dali::RenderSurfaceInterface::MakeContextCurrent()
194    */
195   virtual void MakeContextCurrent() override;
196
197   /**
198    * @copydoc Dali::RenderSurfaceInterface::GetDepthBufferRequired()
199    */
200   virtual Integration::DepthBufferAvailable GetDepthBufferRequired() override;
201
202   /**
203    * @copydoc Dali::RenderSurfaceInterface::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   uint32_t                        mDpiHorizontal;
255   uint32_t                        mDpiVertical;
256
257 }; // class WindowRenderSurface
258
259 } // namespace Adaptor
260
261 } // namespace internal
262
263 } // namespace Dali
264
265 #endif // DALI_INTERNAL_WINDOWSYSTEM_COMMON_WINDOW_RENDER_SURFACE_H