1 #ifndef DALI_INTERNAL_SCENE_GRAPH_SCENE_H
2 #define DALI_INTERNAL_SCENE_GRAPH_SCENE_H
5 * Copyright (c) 2021 Samsung Electronics Co., Ltd.
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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.
21 #include <dali/graphics-api/graphics-controller.h>
22 #include <dali/integration-api/core.h>
23 #include <dali/integration-api/scene.h>
24 #include <dali/internal/common/message.h>
25 #include <dali/internal/event/common/event-thread-services.h>
26 #include <dali/internal/render/common/render-instruction-container.h>
27 #include <dali/public-api/common/vector-wrapper.h>
35 class RenderInstructionContainer;
42 * @param[in] surface The render surface
52 * Creates a scene object in the GPU.
53 * @param[in] graphicsController The graphics controller
54 * @param[in] depthBufferAvailable True if there is a depth buffer
55 * @param[in] stencilBufferAvailable True if there is a stencil buffer
57 void Initialize(Graphics::Controller& graphicsController, Integration::DepthBufferAvailable depthBufferAvailable, Integration::StencilBufferAvailable stencilBufferAvailable);
60 * Gets the render instructions for the scene
61 * @return the render instructions
63 RenderInstructionContainer& GetRenderInstructions();
66 * @brief Adds a callback that is called when the frame rendering is done by the graphics driver.
68 * @param[in] callback The function to call
69 * @param[in] frameId The Id to specify the frame. It will be passed when the callback is called.
71 * @note A callback of the following type may be used:
73 * void MyFunction( int frameId );
75 * This callback will be deleted once it is called.
77 * @note Ownership of the callback is passed onto this class.
79 void AddFrameRenderedCallback(CallbackBase* callback, int32_t frameId);
82 * @brief Adds a callback that is called when the frame is displayed on the display.
84 * @param[in] callback The function to call
85 * @param[in] frameId The Id to specify the frame. It will be passed when the callback is called.
87 * @note A callback of the following type may be used:
89 * void MyFunction( int frameId );
91 * This callback will be deleted once it is called.
93 * @note Ownership of the callback is passed onto this class.
95 void AddFramePresentedCallback(CallbackBase* callback, int32_t frameId);
98 * @brief Gets the callback list that is called when the frame rendering is done by the graphics driver.
100 * @param[out] callbacks The callback list
102 void GetFrameRenderedCallback(Dali::Integration::Scene::FrameCallbackContainer& callbacks);
105 * @brief Gets the callback list that is called when the frame is displayed on the display.
107 * @param[out] callbacks The callback list
109 void GetFramePresentedCallback(Dali::Integration::Scene::FrameCallbackContainer& callbacks);
112 * @brief Sets whether rendering should be skipped or not.
113 * @param[in] skip true if rendering should be skipped.
115 void SetSkipRendering(bool skip);
118 * @brief Query whether rendering should be skipped or not.
119 * @return true if rendering should be skipped, false otherwise.
121 bool IsRenderingSkipped() const;
124 * Set the surface rectangle when surface is resized.
126 * @param[in] scene The resized scene.
127 * @param[in] rect The retangle representing the surface.
129 void SetSurfaceRect(const Rect<int32_t>& rect);
132 * Get the surface rectangle.
134 * @return the current surface rectangle
136 const Rect<int32_t>& GetSurfaceRect() const;
139 * Set the surface orientation when surface is rotated.
141 * @param[in] scene The rotated scene.
142 * @param[in] orientation The orientation value representing the surface.
144 void SetSurfaceOrientation(int32_t orientation);
147 * Get the surface orientation.
149 * @return the current surface orientation
151 int32_t GetSurfaceOrientation() const;
154 * Query wheter the surface rect is changed or not.
155 * @return true if the surface rect is changed.
157 bool IsSurfaceRectChanged();
160 * Set the render target of the surface
162 * @param[in] renderTarget The render target.
164 void SetSurfaceRenderTarget(Graphics::RenderTarget* renderTarget)
166 mRenderTarget = renderTarget;
170 * Get the render target created for the scene
172 * @return the render target
174 [[nodiscard]] Graphics::RenderTarget* GetSurfaceRenderTarget() const
176 return mRenderTarget;
180 * Get the graphics render pass created for the scene
182 * @return the graphics render pass
184 [[nodiscard]] Graphics::RenderPass* GetGraphicsRenderPass(Graphics::AttachmentLoadOp loadOp, Graphics::AttachmentStoreOp storeOp) const
186 if(loadOp == Graphics::AttachmentLoadOp::CLEAR)
188 return mRenderPass.get();
192 return mRenderPassNoClear.get();
197 * Get an initialized array of clear values which then can be modified and accessed to BeginRenderPass() command.
199 * @return the array of clear values
201 [[nodiscard]] auto& GetGraphicsRenderPassClearValues()
207 // Render instructions describe what should be rendered during RenderManager::RenderScene()
208 // Update manager updates instructions for the next frame while we render the current one
210 RenderInstructionContainer mInstructions; ///< Render instructions for the scene
212 Dali::Integration::Scene::FrameCallbackContainer mFrameRenderedCallbacks; ///< Frame rendered callbacks
213 Dali::Integration::Scene::FrameCallbackContainer mFramePresentedCallbacks; ///< Frame presented callbacks
215 bool mSkipRendering; ///< A flag to skip rendering
217 Rect<int32_t> mSurfaceRect; ///< The rectangle of surface which is related ot this scene.
218 int32_t mSurfaceOrientation; ///< The orientation of surface which is related of this scene
219 bool mSurfaceRectChanged; ///< The flag of surface's rectangle is changed when is resized, moved or rotated.
221 // Render pass and render target
224 * Render pass is created on fly depending on Load and Store operations
225 * The default render pass (most likely to be used) is the load = CLEAR
226 * and store = STORE for color attachment.
228 Graphics::UniquePtr<Graphics::RenderPass> mRenderPass{nullptr}; ///< The render pass created to render the surface
229 Graphics::UniquePtr<Graphics::RenderPass> mRenderPassNoClear{nullptr}; ///< The render pass created to render the surface without clearing color
230 Graphics::RenderTarget* mRenderTarget{nullptr}; ///< This is created in the event thread when surface is created/resized/replaced
233 std::vector<Graphics::ClearValue> mClearValues{};
237 inline void AddFrameRenderedCallbackMessage(EventThreadServices& eventThreadServices, const Scene& scene, const CallbackBase* callback, int32_t frameId)
239 using LocalType = MessageValue2<Scene, CallbackBase*, int32_t>;
241 // Reserve some memory inside the message queue
242 uint32_t* slot = eventThreadServices.ReserveMessageSlot(sizeof(LocalType));
244 // Construct message in the message queue memory; note that delete should not be called on the return value
245 new(slot) LocalType(&scene, &Scene::AddFrameRenderedCallback, const_cast<CallbackBase*>(callback), frameId);
248 inline void AddFramePresentedCallbackMessage(EventThreadServices& eventThreadServices, const Scene& scene, const CallbackBase* callback, int32_t frameId)
250 using LocalType = MessageValue2<Scene, CallbackBase*, int32_t>;
252 // Reserve some memory inside the message queue
253 uint32_t* slot = eventThreadServices.ReserveMessageSlot(sizeof(LocalType));
255 // Construct message in the message queue memory; note that delete should not be called on the return value
256 new(slot) LocalType(&scene, &Scene::AddFramePresentedCallback, const_cast<CallbackBase*>(callback), frameId);
259 inline void SetSurfaceRectMessage(EventThreadServices& eventThreadServices, const Scene& scene, const Rect<int32_t>& rect)
261 using LocalType = MessageValue1<Scene, Rect<int32_t> >;
263 // Reserve some memory inside the message queue
264 uint32_t* slot = eventThreadServices.ReserveMessageSlot(sizeof(LocalType));
266 // Construct message in the message queue memory; note that delete should not be called on the return value
267 new(slot) LocalType(&scene, &Scene::SetSurfaceRect, rect);
270 inline void SetSurfaceOrientationMessage(EventThreadServices& eventThreadServices, const Scene& scene, int32_t orientation)
272 using LocalType = MessageValue1<Scene, int32_t>;
274 // Reserve some memory inside the message queue
275 uint32_t* slot = eventThreadServices.ReserveMessageSlot(sizeof(LocalType));
277 // Construct message in the message queue memory; note that delete should not be called on the return value
278 new(slot) LocalType(&scene, &Scene::SetSurfaceOrientation, orientation);
281 inline void SetSurfaceRenderTargetMessage(EventThreadServices& eventThreadServices, const Scene& scene, Graphics::RenderTarget* renderTarget)
283 using LocalType = MessageValue1<Scene, Graphics::RenderTarget*>;
285 // Reserve some memory inside the message queue
286 uint32_t* slot = eventThreadServices.ReserveMessageSlot(sizeof(LocalType));
288 // Construct message in the message queue memory; note that delete should not be called on the return value
289 new(slot) LocalType(&scene, &Scene::SetSurfaceRenderTarget, renderTarget);
292 } // namespace SceneGraph
294 } // namespace Internal
298 #endif // DALI_INTERNAL_SCENE_GRAPH_SCENE_H