Revert "[Tizen] Add screen and client rotation itself function"
[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    * @copydoc Dali::RenderSurfaceInterface::InitializeGraphics()
128    */
129   virtual void InitializeGraphics() override;
130
131   /**
132    * @copydoc Dali::RenderSurfaceInterface::CreateSurface()
133    */
134   virtual void CreateSurface() override;
135
136   /**
137    * @copydoc Dali::RenderSurfaceInterface::DestroySurface()
138    */
139   virtual void DestroySurface() override;
140
141   /**
142    * @copydoc Dali::RenderSurfaceInterface::ReplaceGraphicsSurface()
143    */
144   virtual bool ReplaceGraphicsSurface() override;
145
146   /**
147    * @copydoc Dali::RenderSurfaceInterface::MoveResize()
148    */
149   virtual void MoveResize( Dali::PositionSize positionSize) override;
150
151   /**
152    * @copydoc Dali::RenderSurfaceInterface::StartRender()
153    */
154   virtual void StartRender() override;
155
156   /**
157    * @copydoc Dali::RenderSurfaceInterface::PreRender()
158    */
159   virtual bool PreRender( bool resizingSurface ) override;
160
161   /**
162    * @copydoc Dali::RenderSurfaceInterface::PostRender()
163    */
164   virtual void PostRender( bool renderToFbo, bool replacingSurface, bool resizingSurface );
165
166   /**
167    * @copydoc Dali::RenderSurfaceInterface::StopRender()
168    */
169   virtual void StopRender() override;
170
171   /**
172    * @copydoc Dali::RenderSurfaceInterface::SetThreadSynchronization
173    */
174   virtual void SetThreadSynchronization( ThreadSynchronizationInterface& threadSynchronization ) override;
175
176   /**
177    * @copydoc Dali::RenderSurfaceInterface::ReleaseLock()
178    */
179   virtual void ReleaseLock() override;
180
181   /**
182    * @copydoc Dali::RenderSurfaceInterface::GetSurfaceType()
183    */
184   virtual Dali::RenderSurfaceInterface::Type GetSurfaceType() override;
185
186   /**
187    * @copydoc Dali::RenderSurfaceInterface::MakeContextCurrent()
188    */
189   virtual void MakeContextCurrent() override;
190
191   /**
192    * @copydoc Dali::RenderSurfaceInterface::GetDepthBufferRequired()
193    */
194   virtual Integration::DepthBufferAvailable GetDepthBufferRequired() override;
195
196   /**
197    * @copydoc Dali::RenderSurfaceInterface::GetStencilBufferRequired()
198    */
199   virtual Integration::StencilBufferAvailable GetStencilBufferRequired() override;
200
201 private:
202
203   /**
204    * @brief Second stage construction
205    */
206   void Initialize( Any surface );
207
208   /**
209    * Notify output is transformed.
210    */
211   void OutputTransformed();
212
213   /**
214    * @brief Used as the callback for the rotation-trigger.
215    */
216   void ProcessRotationRequest();
217
218 protected:
219
220   // Undefined
221   WindowRenderSurface(const WindowRenderSurface&) = delete;
222
223   // Undefined
224   WindowRenderSurface& operator=(const WindowRenderSurface& rhs) = delete;
225
226 private: // Data
227
228   EglInterface*                   mEGL;
229   Dali::DisplayConnection*        mDisplayConnection;
230   PositionSize                    mPositionSize;       ///< Position
231   std::unique_ptr< WindowBase >   mWindowBase;
232   ThreadSynchronizationInterface* mThreadSynchronization;
233   TriggerEventInterface*          mRenderNotification; ///< Render notification trigger
234   TriggerEventInterface*          mRotationTrigger;
235   GraphicsInterface*              mGraphics;           ///< Graphics interface
236   EGLSurface                      mEGLSurface;
237   EGLContext                      mEGLContext;
238   ColorDepth                      mColorDepth;         ///< Color depth of surface (32 bit or 24 bit)
239   OutputSignalType                mOutputTransformedSignal;
240   int                             mRotationAngle;
241   int                             mScreenRotationAngle;
242   bool                            mOwnSurface;         ///< Whether we own the surface (responsible for deleting it)
243   bool                            mRotationSupported;
244   bool                            mRotationFinished;
245   bool                            mScreenRotationFinished;
246   bool                            mResizeFinished;
247
248   uint32_t                        mDpiHorizontal;
249   uint32_t                        mDpiVertical;
250
251 }; // class WindowRenderSurface
252
253 } // namespace Adaptor
254
255 } // namespace internal
256
257 } // namespace Dali
258
259 #endif // DALI_INTERNAL_WINDOWSYSTEM_COMMON_WINDOW_RENDER_SURFACE_H