Merge "Test harness sync" into devel/master
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / gl-view / drawable-view-impl.h
1 #ifndef DALI_TOOLKIT_INTERNAL_DRAWABLE_VIEW_H
2 #define DALI_TOOLKIT_INTERNAL_DRAWABLE_VIEW_H
3
4 /*
5  * Copyright (c) 2021 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/devel-api/actors/actor-devel.h>
23 #include <dali/devel-api/adaptor-framework/native-image-source-queue.h>
24 #include <dali/public-api/adaptor-framework/window.h>
25 #include <dali/public-api/rendering/geometry.h>
26 #include <dali/public-api/rendering/shader.h>
27 #include <dali/public-api/signals/render-callback.h>
28 #include "gl-view-interface-impl.h"
29
30 // INTERNAL INCLUDES
31 #include <dali-toolkit/internal/controls/gl-view/gl-view-interface-impl.h>
32 #include <dali-toolkit/public-api/controls/control-impl.h>
33 #include <dali-toolkit/public-api/controls/gl-view/gl-view.h>
34
35 namespace Dali::Toolkit
36 {
37 class GlView;
38
39 namespace Internal
40 {
41 class DrawableView : public Dali::Toolkit::Internal::GlViewImpl
42 {
43 protected:
44   virtual ~DrawableView();
45
46 public:
47   /**
48    * @copydoc Dali::Toolkit::GlView::New()
49    */
50   static Dali::Toolkit::GlView New();
51
52   /**
53    * Construct a new GlView.
54    */
55   DrawableView();
56
57   /**
58    * @copydoc Dali::Toolkit::GlView::RegisterGlCallbacks()
59    */
60   void RegisterGlCallbacks(CallbackBase* initCallback, CallbackBase* renderFrameCallback, CallbackBase* terminateCallback) override;
61
62   /**
63    * @copydoc Dali::Toolkit::GlView::SetResizeCallback()
64    */
65   void SetResizeCallback(CallbackBase* resizeCallback) override;
66
67   /**
68    * @copydoc Dali::Toolkit::GlView::SetGraphicsConfig()
69    */
70   bool SetGraphicsConfig(bool depth, bool stencil, int msaa, Dali::Toolkit::GlView::GraphicsApiVersion version) override;
71
72   /**
73    * @copydoc Dali::Toolkit::GlView::SetRenderingMode()
74    */
75   void SetRenderingMode(Dali::Toolkit::GlView::RenderingMode mode) override;
76
77   /**
78    * @copydoc Dali::Toolkit::GlView::GetRenderingMode()
79    */
80   Dali::Toolkit::GlView::RenderingMode GetRenderingMode() const override;
81
82   /**
83    * @copydoc Dali::Toolkit::GlView::RenderOnce()
84    */
85   void RenderOnce();
86
87 private: // From Control
88   /**
89    * @copydoc Toolkit::Control::OnInitialize()
90    */
91   virtual void OnInitialize() override;
92
93   /**
94    * @copydoc Toolkit::Control::OnSceneConnection()
95    */
96   void OnSceneConnection(int depth) override;
97
98   /**
99    * @copydoc Toolkit::Control::OnSceneDisconnection()
100    */
101   void OnSceneDisconnection() override;
102
103   /**
104    * @copydoc Toolkit::Control::OnSizeSet()
105    */
106   void OnSizeSet(const Vector3& targetSize) override;
107
108 private:
109   // Undefined copy constructor and assignment operators
110   DrawableView(const DrawableView& GlView);
111   DrawableView& operator=(const DrawableView& GlView);
112
113   /**
114    * Callback when the visibility of the GlView is changed
115    */
116   void OnControlVisibilityChanged(Dali::Actor actor, bool visible, Dali::DevelActor::VisibilityChange::Type type);
117
118   /**
119    * Callback when the visibility of the window is changed
120    */
121   void OnWindowVisibilityChanged(Dali::Window window, bool visible);
122
123   /**
124    * Adds renderer to Actor.
125    */
126   void AddRenderer();
127
128 private:
129
130   bool OnRenderCallback( const RenderCallbackInput& renderCallbackInput );
131
132 private:
133   Dali::Toolkit::GlView::RenderingMode mRenderingMode;
134
135   bool mDepth;
136   bool mStencil;
137   int  mMSAA;
138
139   std::unique_ptr<RenderCallback> mRenderCallback;
140
141   /*
142    * Used within RenderCallback to handle the current render state
143    */
144   enum class ViewState
145   {
146     INIT,
147     RENDER,
148     TERMINATE
149   };
150
151   ViewState mCurrentViewState{ViewState::INIT}; ///< state within RenderCallback
152
153   // These callbacks are stored for GLView API compatibility
154   std::unique_ptr<CallbackBase> mOnInitCallback;
155   std::unique_ptr<CallbackBase> mOnRenderCallback;
156   std::unique_ptr<CallbackBase> mOnTerminateCallback;
157   std::unique_ptr<CallbackBase> mOnResizeCallback;
158
159   std::atomic_bool mSurfaceResized{false}; ///< Flag to invoke surface resize callback
160
161   Size mSurfaceSize{}; ///< Surface size
162 };
163
164 } // namespace Internal
165
166 } // namespace Dali
167
168 #endif // DALI_TOOLKIT_INTERNAL_DRAWABLE_VIEW_H