[Tizen] Revert "Skip rendering if no animation is currently active"
[platform/core/uifw/dali-core.git] / dali / internal / update / manager / update-manager.h
1 #ifndef DALI_INTERNAL_SCENE_GRAPH_UPDATE_MANAGER_H
2 #define DALI_INTERNAL_SCENE_GRAPH_UPDATE_MANAGER_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 // INTERNAL INCLUDES
22 #include <dali/public-api/common/vector-wrapper.h>
23 #include <dali/public-api/common/dali-common.h>
24
25 #include <dali/devel-api/common/stage-devel.h>
26
27 #include <dali/internal/common/message.h>
28 #include <dali/internal/common/type-abstraction-enums.h>
29 #include <dali/internal/common/shader-saver.h>
30 #include <dali/internal/event/common/event-thread-services.h>
31 #include <dali/internal/update/animation/scene-graph-animation.h>
32 #include <dali/internal/update/common/property-resetter.h>
33 #include <dali/internal/update/common/scene-graph-buffers.h>
34 #include <dali/internal/update/common/scene-graph-property-notification.h>
35 #include <dali/internal/update/common/scene-graph-scene.h>
36 #include <dali/internal/update/nodes/node.h>
37 #include <dali/internal/update/nodes/scene-graph-layer.h>
38 #include <dali/internal/update/manager/scene-graph-frame-callback.h> // for OwnerPointer< FrameCallback >
39 #include <dali/internal/update/rendering/scene-graph-renderer.h>  // for OwnerPointer< Renderer >
40 #include <dali/internal/update/rendering/scene-graph-texture-set.h> // for OwnerPointer< TextureSet >
41 #include <dali/internal/update/gestures/scene-graph-pan-gesture.h>
42 #include <dali/internal/update/render-tasks/scene-graph-camera.h>
43 #include <dali/internal/update/render-tasks/scene-graph-render-task-list.h>
44 #include <dali/internal/render/shaders/scene-graph-shader.h>   // for OwnerPointer< Shader >
45 #include <dali/internal/render/renderers/render-vertex-buffer.h>
46 #include <dali/internal/event/rendering/texture-impl.h>
47
48 namespace Dali
49 {
50
51 class FrameCallbackInterface;
52
53 namespace Integration
54 {
55 class GlSyncAbstraction;
56 class RenderController;
57
58 } // namespace Integration
59
60 namespace Internal
61 {
62
63 class PropertyNotifier;
64 class NotificationManager;
65 class CompleteNotificationInterface;
66 class TouchResampler;
67
68 namespace Render
69 {
70 struct Sampler;
71 class FrameBuffer;
72 }
73 // value types used by messages
74 template <> struct ParameterType< PropertyNotification::NotifyMode >
75 : public BasicType< PropertyNotification::NotifyMode > {};
76
77 namespace SceneGraph
78 {
79
80 class Animation;
81 class DiscardQueue;
82 class RenderManager;
83 class RenderTaskList;
84 class RenderTaskProcessor;
85 class RenderQueue;
86 class VertexBuffer;
87
88 struct NodeDepthPair
89 {
90   SceneGraph::Node* node;
91   uint32_t sortedDepth;
92   NodeDepthPair( SceneGraph::Node* node, uint32_t sortedDepth )
93   : node(node),
94     sortedDepth(sortedDepth)
95   {
96   }
97 };
98
99 struct NodeDepths
100 {
101   NodeDepths() = default;
102
103   void Add( SceneGraph::Node* node, uint32_t sortedDepth )
104   {
105     nodeDepths.push_back( NodeDepthPair( node, sortedDepth ) );
106   }
107
108   std::vector<NodeDepthPair> nodeDepths;
109 };
110
111
112 /**
113  * UpdateManager maintains a scene graph i.e. a tree of nodes as well as
114  * other scene graph property owning objects.
115  * It controls the Update traversal, in which nodes are repositioned/animated,
116  * and organizes the the culling and rendering of the scene.
117  * It also maintains the lifecycle of nodes and other property owners that are
118  * disconnected from the scene graph.
119  */
120 class UpdateManager : public ShaderSaver
121 {
122 public:
123
124   /**
125    * Construct a new UpdateManager.
126    * @param[in] notificationManager This should be notified when animations have finished.
127    * @param[in] animationPlaylist The CompleteNotificationInterface that handles the animations
128    * @param[in] propertyNotifier The PropertyNotifier
129    * @param[in] discardQueue Nodes are added here when disconnected from the scene-graph.
130    * @param[in] controller After messages are flushed, we request a render from the RenderController.
131    * @param[in] renderManager This is responsible for rendering the results of each "update".
132    * @param[in] renderQueue Used to queue messages for the next render.
133    * @param[in] renderTaskProcessor Handles RenderTasks and RenderInstrucitons.
134    */
135   UpdateManager( NotificationManager& notificationManager,
136                  CompleteNotificationInterface& animationPlaylist,
137                  PropertyNotifier& propertyNotifier,
138                  DiscardQueue& discardQueue,
139                  Integration::RenderController& controller,
140                  RenderManager& renderManager,
141                  RenderQueue& renderQueue,
142                  RenderTaskProcessor& renderTaskProcessor );
143
144   /**
145    * Destructor.
146    */
147   ~UpdateManager() override;
148
149   // Node connection methods
150
151   /**
152    * Installs a new layer as the root node.
153    * @pre The layer is of derived Node type Layer.
154    * @pre The layer does not have a parent.
155    * @param[in] layer The new root node.
156    * @post The node is owned by UpdateManager.
157    */
158   void InstallRoot( OwnerPointer<Layer>& layer );
159
160   /**
161    * Uninstalls the root node.
162    * @pre The layer is of derived Node type Layer.
163    * @pre The layer does not have a parent.
164    * @param[in] layer The root node.
165    * @post The node is owned by UpdateManager.
166    */
167   void UninstallRoot( Layer* layer );
168
169   /**
170    * Add a Node; UpdateManager takes ownership.
171    * @pre The node does not have a parent.
172    * @note even though nodes are pool allocated, they also contain other heap allocated data, thus using OwnerPointer when transferring the data
173    * @param[in] node The node to add.
174    */
175   void AddNode( OwnerPointer<Node>& node );
176
177   /**
178    * Connect a Node to the scene-graph.
179    * A disconnected Node has has no parent or children, and its properties cannot be animated/constrained.
180    * @pre The node does not already have a parent.
181    * @param[in] parent The new parent node.
182    */
183   void ConnectNode( Node* parent, Node* node );
184
185   /**
186    * Disconnect a Node from the scene-graph.
187    * A disconnected Node has has no parent or children, and its properties cannot be animated/constrained.
188    * @pre The node has a parent.
189    * @param[in] node The node to disconnect.
190    */
191   void DisconnectNode( Node* node );
192
193   /**
194    * Destroy a Node owned by UpdateManager.
195    * This is not immediate; Nodes are passed to the RenderQueue to allow GL resources to be deleted.
196    * In the following update, the previously queued Nodes may be deleted.
197    * @pre The node has been disconnected from the scene-graph i.e. has no parent or children.
198    * @param[in] node The node to destroy.
199    */
200   void DestroyNode( Node* node );
201
202   /**
203    * Add a camera on scene
204    * @param[in] camera The camera to add
205    */
206   void AddCamera( OwnerPointer< Camera >& camera );
207
208   /**
209    * Remove a camera from scene
210    * @param[in] camera to remove
211    */
212   void RemoveCamera( Camera* camera );
213
214   /**
215    * Add a newly created object.
216    * @param[in] object The object to add.
217    * @post The object is owned by UpdateManager.
218    */
219   void AddObject( OwnerPointer<PropertyOwner>& object );
220
221   /**
222    * Remove an object.
223    * @param[in] object The object to remove.
224    */
225   void RemoveObject( PropertyOwner* object );
226
227   /**
228    * Add a newly created render task list.
229    * @param[in] taskList The render task list to add.
230    * @post The render task list is owned by UpdateManager.
231    */
232   void AddRenderTaskList( OwnerPointer<RenderTaskList>& taskList );
233
234   /**
235    * Remove a render task list.
236    * @param[in] taskList The render task list to remove.
237    */
238   void RemoveRenderTaskList( RenderTaskList* taskList );
239
240   /**
241    * Add a newly created scene.
242    * @param[in] scene The scene to add.
243    * @post The scene is owned by UpdateManager.
244    */
245   void AddScene( OwnerPointer<Scene>& scene );
246
247   /**
248    * Remove a scene.
249    * @param[in] scene The scene to remove.
250    */
251   void RemoveScene( Scene* scene );
252
253   // Animations
254
255   /**
256    * Add a newly created animation.
257    * @param[in] animation The animation to add.
258    * @post The animation is owned by UpdateManager.
259    */
260   void AddAnimation( OwnerPointer< SceneGraph::Animation >& animation );
261
262   /**
263    * Stop an animation.
264    * @param[in] animation The animation to stop.
265    */
266   void StopAnimation( Animation* animation );
267
268   /**
269    * Remove an animation.
270    * @param[in] animation The animation to remove.
271    */
272   void RemoveAnimation( Animation* animation );
273
274   /**
275    * Query whether any animations are currently running.
276    * @return True if any animations are running.
277    */
278   bool IsAnimationRunning() const;
279
280   /**
281    * Add a property resetter. UpdateManager takes ownership of the object.
282    * It will be killed by UpdateManager when the associated animator or
283    * constraint has finished; or the property owner of the property is destroyed.
284    */
285   void AddPropertyResetter( OwnerPointer<PropertyResetterBase>& propertyResetter );
286
287   // Property Notification
288
289   /**
290    * Add a newly created property notification
291    * @param[in] propertyNotification The notification to add
292    * @post The propertyNotification is owned by UpdateManager.
293    */
294   void AddPropertyNotification( OwnerPointer< PropertyNotification >& propertyNotification );
295
296   /**
297    * Remove a property notification
298    * @param[in] propertyNotification The notification to remove
299    */
300   void RemovePropertyNotification( PropertyNotification* propertyNotification );
301
302   /**
303    * Set Notify state for PropertyNotification
304    * @param[in] propertyNotification The notification to remove
305    * @param[in] notifyMode The notification mode.
306    */
307   void PropertyNotificationSetNotify( PropertyNotification* propertyNotification, PropertyNotification::NotifyMode notifyMode );
308
309   // Shaders
310
311   /**
312    * Add a newly created shader.
313    * @param[in] shader The shader to add.
314    * @post The shader is owned by the UpdateManager.
315    */
316   void AddShader( OwnerPointer< Shader >& shader );
317
318   /**
319    * Remove a shader.
320    * @pre The shader has been added to the UpdateManager.
321    * @param[in] shader The shader to remove.
322    * @post The shader is destroyed.
323    */
324   void RemoveShader( Shader* shader );
325
326   /**
327    * Set the shader program for a Shader object
328    * @param[in] shader        The shader to modify
329    * @param[in] shaderData    Source code, hash over source, and optional compiled binary for the shader program
330    * @param[in] modifiesGeometry True if the vertex shader modifies geometry
331    */
332   void SetShaderProgram( Shader* shader, Internal::ShaderDataPtr shaderData, bool modifiesGeometry );
333
334   /**
335    * @brief Accept compiled shaders passed back on render thread for saving.
336    * @param[in] shaderData Source code, hash over source, and corresponding compiled binary to be saved.
337    */
338   void SaveBinary( Internal::ShaderDataPtr shaderData ) override;
339
340   /**
341    * @brief Set the destination for compiled shader binaries to be passed on to.
342    * The dispatcher passed in will be called from the update thread.
343    * @param[in] upstream A sink for ShaderDatas to be passed into.
344    */
345   void SetShaderSaver( ShaderSaver& upstream );
346
347   // Renderers
348
349   /**
350    * Add a new renderer to scene
351    * @param renderer to add
352    */
353   void AddRenderer( OwnerPointer< Renderer >& renderer );
354
355   /**
356    * Add a renderer from scene
357    * @param renderer to remove
358    */
359   void RemoveRenderer( Renderer* renderer );
360
361   // Gestures
362
363   /**
364    * Set the pan gesture processor.
365    * Pan Gesture processor lives for the lifetime of UpdateManager
366    * @param[in] gesture The gesture processor.
367    * @post The gestureProcessor is owned by the UpdateManager.
368    */
369   void SetPanGestureProcessor( PanGesture* gestureProcessor );
370
371   // Textures
372
373   /**
374    * Add a newly created TextureSet.
375    * @param[in] textureSet The texture set to add.
376    * @post The TextureSet is owned by the UpdateManager.
377    */
378   void AddTextureSet( OwnerPointer< TextureSet >& textureSet );
379
380   /**
381    * Remove a TextureSet.
382    * @pre The TextureSet has been added to the UpdateManager.
383    * @param[in] textureSet The TextureSet to remove.
384    * @post The TextureSet is destroyed.
385    */
386   void RemoveTextureSet( TextureSet* textureSet );
387
388   // Render tasks
389
390   /**
391    * Get the scene graph side list of RenderTasks.
392    * @param[in] systemLevel True if using the system-level overlay.
393    * @return The list of render tasks
394    */
395   RenderTaskList* GetRenderTaskList( bool systemLevel );
396
397 // Message queue handling
398
399   /**
400    * Reserve space for another message in the queue; this must then be initialized by the caller.
401    * The message will be read from the update-thread after the next FlushMessages is called.
402    * @post Calling this method may invalidate any previously returned slots.
403    * @param[in] size The message size with respect to the size of type "char".
404    * @param[in] updateScene A flag, when true denotes that the message will cause the scene-graph node tree to require an update.
405    * @note the default value of updateScene should match that in EventThreadServices::ReserveMessageSlot.
406    * @return A pointer to the first char allocated for the message.
407    */
408   uint32_t* ReserveMessageSlot( uint32_t size, bool updateScene = true );
409
410   /**
411    * @return the current event-buffer index.
412    */
413   BufferIndex GetEventBufferIndex() const
414   {
415     // inlined as its called often from event thread
416     return mSceneGraphBuffers.GetEventBufferIndex();
417   }
418
419   /**
420    * Called by the event-thread to signal that FlushQueue will be called
421    * e.g. when it has finished event processing.
422    */
423   void EventProcessingStarted();
424
425   /**
426    * Flush the set of messages, which were previously stored with QueueMessage().
427    * Calls to this thread-safe method should be minimized, to avoid thread blocking.
428    *
429    * @return True if there are messages to process.
430    */
431   bool FlushQueue();
432
433   /**
434    * Add a new sampler to RenderManager
435    * @param[in] sampler The sampler to add
436    * @post Sends a message to RenderManager to add the sampler.
437    * The sampler will be owned by RenderManager
438    */
439   void AddSampler( OwnerPointer< Render::Sampler >& sampler );
440
441   /**
442    * Removes an existing sampler from RenderManager
443    * @param[in] sampler The sampler to remove
444    * @post The sampler will be destroyed in the render thread
445    */
446   void RemoveSampler( Render::Sampler* sampler );
447
448   /**
449    * Sets the filter modes for an existing sampler
450    * @param[in] sampler The sampler
451    * @param[in] minFilterMode The filter to use under minification
452    * @param[in] magFilterMode The filter to use under magnification
453    */
454   void SetFilterMode( Render::Sampler* sampler, uint32_t minFilterMode, uint32_t magFilterMode );
455
456   /**
457    * Sets the wrap mode for an existing sampler
458    * @param[in] sampler The sampler
459    * @param[in] rWrapMode Wrapping mode in z direction
460    * @param[in] sWrapMode Wrapping mode in x direction
461    * @param[in] tWrapMode Wrapping mode in y direction
462    */
463   void SetWrapMode( Render::Sampler* sampler, uint32_t rWrapMode, uint32_t sWrapMode, uint32_t tWrapMode );
464
465   /**
466    * Add a new property buffer to RenderManager
467    * @param[in] propertryBuffer The property buffer to add
468    * @post Sends a message to RenderManager to add the property buffer.
469    * The property buffer will be owned by RenderManager
470    */
471   void AddVertexBuffer( OwnerPointer< Render::VertexBuffer >& propertryBuffer );
472
473   /**
474    * Removes an existing VertexBuffer from RenderManager
475    * @param[in] propertryBuffer The property buffer to remove
476    * @post The property buffer will be destroyed in the render thread
477    */
478   void RemoveVertexBuffer( Render::VertexBuffer* propertryBuffer );
479
480   /**
481    * Sets the format of an existing property buffer
482    * @param[in] vertexBuffer The property buffer.
483    * @param[in] format The new format of the buffer
484    * @post Sends a message to RenderManager to set the new format to the property buffer.
485    */
486   void SetVertexBufferFormat( Render::VertexBuffer* vertexBuffer, OwnerPointer< Render::VertexBuffer::Format>& format );
487
488   /**
489    * Sets the data of an existing property buffer
490    * @param[in] vertexBuffer The property buffer.
491    * @param[in] data The new data of the buffer
492    * @param[in] size The new size of the buffer
493    * @post Sends a message to RenderManager to set the new data to the property buffer.
494    */
495   void SetVertexBufferData( Render::VertexBuffer* vertexBuffer, OwnerPointer< Vector<uint8_t> >& data, uint32_t size );
496
497   /**
498    * Adds a geometry to the RenderManager
499    * @param[in] geometry The geometry to add
500    * @post Sends a message to RenderManager to add the Geometry
501    * The geometry will be owned by RenderManager
502    */
503   void AddGeometry( OwnerPointer< Render::Geometry >& geometry );
504
505   /**
506    * Removes an existing Geometry from RenderManager
507    * @param[in] geometry The geometry to remove
508    * @post The geometry will be destroyed in the render thread
509    */
510   void RemoveGeometry( Render::Geometry* geometry );
511
512   /**
513    * Sets the geometry type of an existing Geometry
514    * @param[in] geometry The geometry
515    * @param[in] geometryType The type of the geometry
516    */
517   void SetGeometryType( Render::Geometry* geometry, uint32_t geometryType );
518
519   /**
520    * Sets the index buffer to be used by a geometry
521    * @param[in] geometry The geometry
522    * @param[in] indices A vector containing the indices for the geometry
523    */
524   void SetIndexBuffer( Render::Geometry* geometry, Dali::Vector<uint16_t>& indices );
525
526   /**
527    * Adds a vertex buffer to a geometry
528    * @param[in] geometry The geometry
529    * @param[in] vertexBuffer The property buffer
530    */
531   void AttachVertexBuffer( Render::Geometry* geometry, Render::VertexBuffer* vertexBuffer );
532
533   /**
534    * Removes a vertex buffer from a geometry
535    * @param[in] geometry The geometry
536    * @param[in] vertexBuffer The property buffer
537    */
538   void RemoveVertexBuffer( Render::Geometry* geometry, Render::VertexBuffer* vertexBuffer );
539
540   /**
541    * Adds a texture to the render manager
542    * @param[in] texture The texture to add
543    * The texture will be owned by RenderManager
544    */
545   void AddTexture( OwnerPointer< Render::Texture >& texture );
546
547   /**
548    * Removes a texture from the render manager
549    * @param[in] texture The texture to remove
550    * @post The texture will be destroyed in the render thread
551    */
552   void RemoveTexture( Render::Texture* texture );
553
554   /**
555    * Uploads data to a texture owned by the RenderManager
556    * @param[in] texture The texture
557    * @param[in] pixelData The pixel data object
558    * @param[in] params The parameters for the upload
559    */
560   void UploadTexture( Render::Texture* texture, PixelDataPtr pixelData, const Texture::UploadParams& params );
561
562   /**
563    * Generates mipmaps for a texture owned by the RenderManager
564    * @param[in] texture The texture
565    */
566   void GenerateMipmaps( Render::Texture* texture );
567
568   /**
569    * Adds a framebuffer to the render manager
570    * @param[in] frameBuffer The framebuffer to add
571    * The framebuffer will be owned by RenderManager
572    */
573   void AddFrameBuffer( OwnerPointer< Render::FrameBuffer >& frameBuffer );
574
575   /**
576    * Removes a FrameBuffer from the render manager
577    * @param[in] frameBuffer The FrameBuffer to remove
578    * @post The FrameBuffer will be destroyed in the render thread
579    */
580   void RemoveFrameBuffer( Render::FrameBuffer* frameBuffer );
581
582   /**
583    * Attach a texture as color output to an existing FrameBuffer
584    * @param[in] frameBuffer The FrameBuffer
585    * @param[in] texture The texture that will be used as output when rendering
586    * @param[in] mipmapLevel The mipmap of the texture to be attached
587    * @param[in] layer Indicates which layer of a cube map or array texture to attach. Unused for 2D textures
588    */
589   void AttachColorTextureToFrameBuffer( Render::FrameBuffer* frameBuffer, Render::Texture* texture, uint32_t mipmapLevel, uint32_t face );
590
591   /**
592    * Attach a texture as depth output to an existing FrameBuffer
593    * @param[in] frameBuffer The FrameBuffer
594    * @param[in] texture The texture that will be used as output when rendering
595    * @param[in] mipmapLevel The mipmap of the texture to be attached
596    */
597   void AttachDepthTextureToFrameBuffer( Render::FrameBuffer* frameBuffer, Render::Texture* texture, uint32_t mipmapLevel );
598
599   /**
600    * Attach a texture as depth/stencil output to an existing FrameBuffer
601    * @param[in] frameBuffer The FrameBuffer
602    * @param[in] texture The texture that will be used as output when rendering
603    * @param[in] mipmapLevel The mipmap of the texture to be attached
604    */
605   void AttachDepthStencilTextureToFrameBuffer( Render::FrameBuffer* frameBuffer, Render::Texture* texture, uint32_t mipmapLevel );
606
607   /**
608    * This is called when the surface of the scene has been replaced.
609    * @param[in] scene The scene.
610    */
611   void SurfaceReplaced( Scene* scene );
612
613 public:
614
615   /**
616    * Performs an Update traversal on the scene-graph.
617    * @param[in] elapsedSeconds The elapsed time that should be applied to animations.
618    * @param[in] lastVSyncTimeMilliseconds The last time, in milliseconds, that we had a VSync.
619    * @param[in] nextVSyncTimeMilliseconds The estimated time, in milliseconds, of the next VSync.
620    * @param[in] renderToFboEnabled Whether rendering into the Frame Buffer Object is enabled.
621    * @param[in] isRenderingToFbo   Whether this frame is being rendered into the Frame Buffer Object.
622    * @return True if further updates are required e.g. during animations.
623    */
624   uint32_t Update( float elapsedSeconds,
625                    uint32_t lastVSyncTimeMilliseconds,
626                    uint32_t nextVSyncTimeMilliseconds,
627                    bool renderToFboEnabled,
628                    bool isRenderingToFbo );
629
630   /**
631    * Set the default surface rect.
632    * @param[in] rect The rect value representing the surface.
633    */
634   void SetDefaultSurfaceRect( const Rect<int>& rect );
635
636   /**
637    * Set the default surface orientation.
638    * @param[in] orientation The orientation value representing the surface.
639    */
640   void SetDefaultSurfaceOrientation( int orientation );
641
642   /**
643    * @copydoc Dali::Stage::KeepRendering()
644    */
645   void KeepRendering( float durationSeconds );
646
647   /**
648    * @copydoc Dali::DevelStage::SetRenderingBehavior()
649    */
650   void SetRenderingBehavior( DevelStage::Rendering renderingBehavior );
651
652   /**
653    * Sets the depths of all layers.
654    * @param layers The layers in depth order.
655    * @param[in] rootLayer The root layer of the sorted layers.
656    */
657   void SetLayerDepths( const std::vector< Layer* >& layers, const Layer* rootLayer );
658
659   /**
660    * Set the depth indices of all nodes (in LayerUI's)
661    * @param[in] nodeDepths A vector of nodes and associated depth indices
662    */
663   void SetDepthIndices( OwnerPointer< NodeDepths >& nodeDepths );
664
665   /**
666    * Query wheter the default surface rect is changed or not.
667    * @return true if the default surface rect is changed.
668    */
669   bool IsDefaultSurfaceRectChanged();
670
671   /**
672    * Adds an implementation of the FrameCallbackInterface.
673    * @param[in] frameCallback An OwnerPointer to the SceneGraph FrameCallback object
674    * @param[in] rootNode A pointer to the root node to apply the FrameCallback to
675    */
676   void AddFrameCallback( OwnerPointer< FrameCallback >& frameCallback, const Node* rootNode );
677
678   /**
679    * Removes the specified implementation of FrameCallbackInterface.
680    * @param[in] frameCallback A pointer to the implementation of the FrameCallbackInterface to remove.
681    */
682   void RemoveFrameCallback( FrameCallbackInterface* frameCallback );
683
684 private:
685
686   // Undefined
687   UpdateManager(const UpdateManager&);
688
689   // Undefined
690   UpdateManager& operator=(const UpdateManager& rhs);
691
692   /**
693    * Helper to check whether the update-thread should keep going.
694    * @param[in] elapsedSeconds The time in seconds since the previous update.
695    * @return True if the update-thread should keep going.
696    */
697   uint32_t KeepUpdatingCheck( float elapsedSeconds ) const;
698
699   /**
700    * Helper to reset all Node properties
701    * @param[in] bufferIndex to use
702    */
703   void ResetProperties( BufferIndex bufferIndex );
704
705   /**
706    * Perform gesture updates.
707    * @param[in] bufferIndex to use
708    * @param[in] lastVSyncTime  The last VSync time in milliseconds.
709    * @param[in] nextVSyncTime  The estimated time of the next VSync in milliseconds.
710    * @return true, if any properties were updated.
711    */
712   bool ProcessGestures( BufferIndex bufferIndex, uint32_t lastVSyncTimeMilliseconds, uint32_t nextVSyncTimeMilliseconds );
713
714   /**
715    * Perform animation updates
716    * @param[in] bufferIndex to use
717    * @param[in] elapsedSeconds time since last frame
718    */
719   void Animate( BufferIndex bufferIndex, float elapsedSeconds );
720
721   /**
722    * Applies constraints to CustomObjects
723    * @param[in] bufferIndex to use
724    */
725   void ConstrainCustomObjects( BufferIndex bufferIndex );
726
727   /**
728    * Applies constraints to RenderTasks
729    * @param[in] bufferIndex to use
730    */
731   void ConstrainRenderTasks( BufferIndex bufferIndex );
732
733   /**
734    * Applies constraints to Shaders
735    * @param[in] bufferIndex to use
736    */
737   void ConstrainShaders( BufferIndex bufferIndex );
738
739   /**
740    * Perform property notification updates
741    * @param[in] bufferIndex to use
742    */
743   void ProcessPropertyNotifications( BufferIndex bufferIndex );
744
745   /**
746    * Pass shader binaries queued here on to event thread.
747    */
748   void ForwardCompiledShadersToEventThread();
749
750   /**
751    * Update node shaders, opacity, geometry etc.
752    * @param[in] bufferIndex to use
753    */
754   void UpdateNodes( BufferIndex bufferIndex );
755
756   /**
757    * Update Renderers
758    * @param[in] bufferIndex to use
759    */
760   void UpdateRenderers( BufferIndex bufferIndex );
761
762 private:
763
764   // needs to be direct member so that getter for event buffer can be inlined
765   SceneGraphBuffers mSceneGraphBuffers;
766
767   struct Impl;
768   Impl* mImpl;
769
770 };
771
772 // Messages for UpdateManager
773
774 inline void InstallRootMessage( UpdateManager& manager, OwnerPointer<Layer>& root )
775 {
776   // Message has ownership of Layer while in transit from event -> update
777   using LocalType = MessageValue1<UpdateManager, OwnerPointer<Layer> >;
778
779   // Reserve some memory inside the message queue
780   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
781
782   // Construct message in the message queue memory; note that delete should not be called on the return value
783   new (slot) LocalType( &manager, &UpdateManager::InstallRoot, root );
784 }
785
786 inline void UninstallRootMessage( UpdateManager& manager, const Layer* constRoot )
787 {
788   // Scene graph thread can destroy this object.
789   Layer* root = const_cast< Layer* >( constRoot );
790
791   using LocalType = MessageValue1<UpdateManager, Layer*>;
792
793   // Reserve some memory inside the message queue
794   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
795
796   // Construct message in the message queue memory; note that delete should not be called on the return value
797   new (slot) LocalType( &manager, &UpdateManager::UninstallRoot, root );
798 }
799
800 inline void AddNodeMessage( UpdateManager& manager, OwnerPointer<Node>& node )
801 {
802   // Message has ownership of Node while in transit from event -> update
803   using LocalType = MessageValue1<UpdateManager, OwnerPointer<Node> >;
804
805   // Reserve some memory inside the message queue
806   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
807
808   // Construct message in the message queue memory; note that delete should not be called on the return value
809   new (slot) LocalType( &manager, &UpdateManager::AddNode, node );
810 }
811
812 inline void ConnectNodeMessage( UpdateManager& manager, const Node& constParent, const Node& constChild )
813 {
814   // Update thread can edit the object
815   Node& parent = const_cast< Node& >( constParent );
816   Node& child = const_cast< Node& >( constChild );
817
818   using LocalType = MessageValue2<UpdateManager, Node*, Node*>;
819
820   // Reserve some memory inside the message queue
821   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
822
823   // Construct message in the message queue memory; note that delete should not be called on the return value
824   new (slot) LocalType( &manager, &UpdateManager::ConnectNode, &parent, &child );
825 }
826
827 inline void DisconnectNodeMessage( UpdateManager& manager, const Node& constNode )
828 {
829   // Scene graph thread can modify this object.
830   Node& node = const_cast< Node& >( constNode );
831
832   using LocalType = MessageValue1<UpdateManager, Node*>;
833
834   // Reserve some memory inside the message queue
835   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
836
837   // Construct message in the message queue memory; note that delete should not be called on the return value
838   new (slot) LocalType( &manager, &UpdateManager::DisconnectNode, &node );
839 }
840
841 inline void DestroyNodeMessage( UpdateManager& manager, const Node& constNode )
842 {
843   // Scene graph thread can destroy this object.
844   Node& node = const_cast< Node& >( constNode );
845
846   using LocalType = MessageValue1<UpdateManager, Node*>;
847
848   // Reserve some memory inside the message queue
849   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
850
851   // Construct message in the message queue memory; note that delete should not be called on the return value
852   new (slot) LocalType( &manager, &UpdateManager::DestroyNode, &node );
853 }
854
855 inline void AddCameraMessage( UpdateManager& manager, OwnerPointer< Camera >& camera )
856 {
857   // Message has ownership of Camera while in transit from event -> update
858   using LocalType = MessageValue1<UpdateManager, OwnerPointer<Camera> >;
859
860   // Reserve some memory inside the message queue
861   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
862
863   // Construct message in the message queue memory; note that delete should not be called on the return value
864   new (slot) LocalType( &manager, &UpdateManager::AddCamera, camera );
865 }
866
867 inline void RemoveCameraMessage( UpdateManager& manager, const Camera* camera )
868 {
869   using LocalType = MessageValue1<UpdateManager, Camera*>;
870
871   // Reserve some memory inside the message queue
872   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
873
874   // Construct message in the message queue memory; note that delete should not be called on the return value
875   new (slot) LocalType( &manager, &UpdateManager::RemoveCamera, const_cast<Camera*>( camera ) );
876 }
877
878 inline void AddObjectMessage( UpdateManager& manager, OwnerPointer<PropertyOwner>& object )
879 {
880   // Message has ownership of object while in transit from event -> update
881   using LocalType = MessageValue1<UpdateManager, OwnerPointer<PropertyOwner> >;
882
883   // Reserve some memory inside the message queue
884   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
885
886   // Construct message in the message queue memory; note that delete should not be called on the return value
887   new (slot) LocalType( &manager, &UpdateManager::AddObject, object );
888 }
889
890 inline void RemoveObjectMessage( UpdateManager& manager, const PropertyOwner* object )
891 {
892   using LocalType = MessageValue1<UpdateManager, PropertyOwner*>;
893
894   // Reserve some memory inside the message queue
895   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
896
897   // Construct message in the message queue memory; note that delete should not be called on the return value
898   new (slot) LocalType( &manager, &UpdateManager::RemoveObject, const_cast<PropertyOwner*>( object ) );
899 }
900
901 inline void AddAnimationMessage( UpdateManager& manager, OwnerPointer< SceneGraph::Animation >& animation )
902 {
903   using LocalType = MessageValue1<UpdateManager, OwnerPointer<SceneGraph::Animation> >;
904
905   // Reserve some memory inside the message queue
906   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
907
908   // Construct message in the message queue memory; note that delete should not be called on the return value
909   new (slot) LocalType( &manager, &UpdateManager::AddAnimation, animation );
910 }
911
912 inline void StopAnimationMessage( UpdateManager& manager, const Animation& constAnimation )
913 {
914   // The scene-graph thread owns this object so it can safely edit it.
915   Animation& animation = const_cast< Animation& >( constAnimation );
916
917   using LocalType = MessageValue1<UpdateManager, Animation*>;
918
919   // Reserve some memory inside the message queue
920   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
921
922   // Construct message in the message queue memory; note that delete should not be called on the return value
923   new (slot) LocalType( &manager, &UpdateManager::StopAnimation, &animation );
924 }
925
926 inline void RemoveAnimationMessage( UpdateManager& manager, const Animation& constAnimation )
927 {
928   // The scene-graph thread owns this object so it can safely edit it.
929   Animation& animation = const_cast< Animation& >( constAnimation );
930
931   using LocalType = MessageValue1<UpdateManager, Animation*>;
932
933   // Reserve some memory inside the message queue
934   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
935
936   // Construct message in the message queue memory; note that delete should not be called on the return value
937   new (slot) LocalType( &manager, &UpdateManager::RemoveAnimation, &animation );
938 }
939
940 inline void AddRenderTaskListMessage( UpdateManager& manager, OwnerPointer< SceneGraph::RenderTaskList >& taskList )
941 {
942   using LocalType = MessageValue1<UpdateManager, OwnerPointer<SceneGraph::RenderTaskList> >;
943
944   // Reserve some memory inside the message queue
945   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
946
947   // Construct message in the message queue memory; note that delete should not be called on the return value
948   new (slot) LocalType( &manager, &UpdateManager::AddRenderTaskList, taskList );
949 }
950
951 inline void RemoveRenderTaskListMessage( UpdateManager& manager, const RenderTaskList& constTaskList )
952 {
953   // The scene-graph thread owns this object so it can safely edit it.
954   RenderTaskList& taskList = const_cast< RenderTaskList& >( constTaskList );
955
956   using LocalType = MessageValue1<UpdateManager, RenderTaskList*>;
957
958   // Reserve some memory inside the message queue
959   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
960
961   // Construct message in the message queue memory; note that delete should not be called on the return value
962   new (slot) LocalType( &manager, &UpdateManager::RemoveRenderTaskList, &taskList );
963 }
964
965 inline void AddSceneMessage( UpdateManager& manager, OwnerPointer< SceneGraph::Scene >& scene )
966 {
967   using LocalType = MessageValue1<UpdateManager, OwnerPointer<SceneGraph::Scene> >;
968
969   // Reserve some memory inside the message queue
970   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
971
972   // Construct message in the message queue memory; note that delete should not be called on the return value
973   new (slot) LocalType( &manager, &UpdateManager::AddScene, scene );
974 }
975
976 inline void RemoveSceneMessage( UpdateManager& manager, const SceneGraph::Scene& constScene )
977 {
978   // The scene-graph thread owns this object so it can safely edit it.
979   Scene& scene = const_cast< Scene& >( constScene );
980
981   using LocalType = MessageValue1<UpdateManager, Scene*>;
982
983   // Reserve some memory inside the message queue
984   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
985
986   // Construct message in the message queue memory; note that delete should not be called on the return value
987   new (slot) LocalType( &manager, &UpdateManager::RemoveScene, &scene );
988 }
989
990 inline void AddPropertyNotificationMessage( UpdateManager& manager, OwnerPointer< PropertyNotification >& propertyNotification )
991 {
992   // Message has ownership of PropertyNotification while in transit from event -> update
993   using LocalType = MessageValue1<UpdateManager, OwnerPointer<PropertyNotification> >;
994
995   // Reserve some memory inside the message queue
996   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
997
998   // Construct message in the message queue memory; note that delete should not be called on the return value
999   new (slot) LocalType( &manager, &UpdateManager::AddPropertyNotification, propertyNotification );
1000 }
1001
1002 inline void RemovePropertyNotificationMessage( UpdateManager& manager, const PropertyNotification& constPropertyNotification )
1003 {
1004   // The scene-graph thread owns this object so it can safely edit it.
1005   PropertyNotification& propertyNotification = const_cast< PropertyNotification& >( constPropertyNotification );
1006
1007   using LocalType = MessageValue1<UpdateManager, PropertyNotification*>;
1008
1009   // Reserve some memory inside the message queue
1010   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1011
1012   // Construct message in the message queue memory; note that delete should not be called on the return value
1013   new (slot) LocalType( &manager, &UpdateManager::RemovePropertyNotification, &propertyNotification );
1014 }
1015
1016 inline void PropertyNotificationSetNotifyModeMessage( UpdateManager& manager,
1017                                                       const PropertyNotification* constPropertyNotification,
1018                                                       PropertyNotification::NotifyMode notifyMode )
1019 {
1020   // The scene-graph thread owns this object so it can safely edit it.
1021   PropertyNotification* propertyNotification = const_cast< PropertyNotification* >( constPropertyNotification );
1022
1023   using LocalType = MessageValue2<UpdateManager, PropertyNotification*, PropertyNotification::NotifyMode>;
1024
1025   // Reserve some memory inside the message queue
1026   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1027
1028   // Construct message in the message queue memory; note that delete should not be called on the return value
1029   new (slot) LocalType( &manager, &UpdateManager::PropertyNotificationSetNotify, propertyNotification, notifyMode );
1030 }
1031
1032 // The render thread can safely change the Shader
1033 inline void AddShaderMessage( UpdateManager& manager, OwnerPointer< Shader >& shader )
1034 {
1035   using LocalType = MessageValue1<UpdateManager, OwnerPointer<Shader> >;
1036
1037   // Reserve some memory inside the message queue
1038   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1039
1040   // Construct message in the message queue memory; note that delete should not be called on the return value
1041   new (slot) LocalType( &manager, &UpdateManager::AddShader, shader );
1042 }
1043
1044 // The render thread can safely change the Shader
1045 inline void RemoveShaderMessage( UpdateManager& manager, const Shader* shader )
1046 {
1047   using LocalType = MessageValue1<UpdateManager, Shader*>;
1048
1049   // Reserve some memory inside the message queue
1050   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1051
1052   // Construct message in the message queue memory; note that delete should not be called on the return value
1053   new (slot) LocalType( &manager, &UpdateManager::RemoveShader, const_cast<Shader*>( shader ) );
1054 }
1055
1056 inline void SetShaderProgramMessage( UpdateManager& manager,
1057                                      const Shader& shader,
1058                                      Internal::ShaderDataPtr shaderData,
1059                                      bool modifiesGeometry )
1060 {
1061   using LocalType = MessageValue3<UpdateManager, Shader*, Internal::ShaderDataPtr, bool>;
1062
1063   // Reserve some memory inside the message queue
1064   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1065
1066   // Construct message in the message queue memory; note that delete should not be called on the return value
1067   new (slot) LocalType( &manager, &UpdateManager::SetShaderProgram, const_cast<Shader*>( &shader ), shaderData, modifiesGeometry );
1068 }
1069
1070 inline void SetDefaultSurfaceRectMessage( UpdateManager& manager, const Rect<int32_t>& rect  )
1071 {
1072   using LocalType = MessageValue1<UpdateManager, Rect<int32_t> >;
1073
1074   // Reserve some memory inside the message queue
1075   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1076
1077   // Construct message in the message queue memory; note that delete should not be called on the return value
1078   new (slot) LocalType( &manager, &UpdateManager::SetDefaultSurfaceRect, rect );
1079 }
1080
1081 inline void SurfaceReplacedMessage( UpdateManager& manager, const SceneGraph::Scene& constScene )
1082 {
1083   // The scene-graph thread owns this object so it can safely edit it.
1084   Scene& scene = const_cast< Scene& >( constScene );
1085
1086   using LocalType = MessageValue1<UpdateManager, Scene*>;
1087
1088   // Reserve some memory inside the message queue
1089   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1090
1091   // Construct message in the message queue memory; note that delete should not be called on the return value
1092   new (slot) LocalType( &manager, &UpdateManager::SurfaceReplaced, &scene );
1093 }
1094
1095 inline void SetDefaultSurfaceOrientationMessage( UpdateManager& manager, int orientation  )
1096 {
1097   typedef MessageValue1< UpdateManager, int > LocalType;
1098
1099   // Reserve some memory inside the message queue
1100   unsigned int* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1101
1102   // Construct message in the message queue memory; note that delete should not be called on the return value
1103   new (slot) LocalType( &manager, &UpdateManager::SetDefaultSurfaceOrientation, orientation );
1104 }
1105
1106 inline void KeepRenderingMessage( UpdateManager& manager, float durationSeconds )
1107 {
1108   using LocalType = MessageValue1<UpdateManager, float>;
1109
1110   // Reserve some memory inside the message queue
1111   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1112
1113   // Construct message in the message queue memory; note that delete should not be called on the return value
1114   new (slot) LocalType( &manager, &UpdateManager::KeepRendering, durationSeconds );
1115 }
1116
1117 inline void SetRenderingBehaviorMessage( UpdateManager& manager, DevelStage::Rendering renderingBehavior )
1118 {
1119   using LocalType = MessageValue1<UpdateManager, DevelStage::Rendering>;
1120
1121   // Reserve some memory inside the message queue
1122   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1123
1124   // Construct message in the message queue memory; note that delete should not be called on the return value
1125   new (slot) LocalType( &manager, &UpdateManager::SetRenderingBehavior, renderingBehavior );
1126 }
1127
1128 /**
1129  * Create a message for setting the depth of a layer
1130  * @param[in] manager The update manager
1131  * @param[in] layers list of layers
1132  * @param[in] rootLayer The rool layer
1133  */
1134 inline void SetLayerDepthsMessage( UpdateManager& manager, const std::vector< Layer* >& layers, const Layer* rootLayer )
1135 {
1136   using LocalType = MessageValue2<UpdateManager, std::vector<Layer*>, const Layer*>;
1137
1138   // Reserve some memory inside the message queue
1139   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1140
1141   // Construct message in the message queue memory; note that delete should not be called on the return value
1142   new (slot) LocalType( &manager, &UpdateManager::SetLayerDepths, layers, rootLayer );
1143 }
1144
1145 inline void AddRendererMessage( UpdateManager& manager, OwnerPointer< Renderer >& object )
1146 {
1147   using LocalType = MessageValue1<UpdateManager, OwnerPointer<Renderer> >;
1148
1149   // Reserve some memory inside the message queue
1150   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1151   // Construct message in the message queue memory; note that delete should not be called on the return value
1152   new (slot) LocalType( &manager, &UpdateManager::AddRenderer, object );
1153 }
1154
1155 inline void RemoveRendererMessage( UpdateManager& manager, const Renderer& object )
1156 {
1157   using LocalType = MessageValue1<UpdateManager, Renderer*>;
1158
1159   // Reserve some memory inside the message queue
1160   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1161   // Construct message in the message queue memory; note that delete should not be called on the return value
1162   new (slot) LocalType( &manager, &UpdateManager::RemoveRenderer, const_cast<Renderer*>( &object ) );
1163 }
1164
1165 // The render thread can safely change the Shader
1166 inline void AddTextureSetMessage( UpdateManager& manager, OwnerPointer< TextureSet >& textureSet )
1167 {
1168   using LocalType = MessageValue1<UpdateManager, OwnerPointer<TextureSet> >;
1169
1170   // Reserve some memory inside the message queue
1171   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1172
1173   // Construct message in the message queue memory; note that delete should not be called on the return value
1174   new (slot) LocalType( &manager, &UpdateManager::AddTextureSet, textureSet );
1175 }
1176
1177 // The render thread can safely change the Shader
1178 inline void RemoveTextureSetMessage( UpdateManager& manager, TextureSet& textureSet )
1179 {
1180   using LocalType = MessageValue1<UpdateManager, TextureSet*>;
1181
1182   // Reserve some memory inside the message queue
1183   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1184
1185   // Construct message in the message queue memory; note that delete should not be called on the return value
1186   new (slot) LocalType( &manager, &UpdateManager::RemoveTextureSet, &textureSet );
1187 }
1188
1189 inline void AddSamplerMessage( UpdateManager& manager, OwnerPointer< Render::Sampler >& sampler )
1190 {
1191   // Message has ownership of Sampler while in transit from event -> update
1192   using LocalType = MessageValue1<UpdateManager, OwnerPointer<Render::Sampler> >;
1193
1194   // Reserve some memory inside the message queue
1195   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1196
1197   // Construct message in the message queue memory; note that delete should not be called on the return value
1198   new (slot) LocalType( &manager, &UpdateManager::AddSampler, sampler );
1199 }
1200
1201 inline void RemoveSamplerMessage( UpdateManager& manager, Render::Sampler& sampler )
1202 {
1203   using LocalType = MessageValue1<UpdateManager, Render::Sampler*>;
1204
1205   // Reserve some memory inside the message queue
1206   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1207
1208   // Construct message in the message queue memory; note that delete should not be called on the return value
1209   new (slot) LocalType( &manager, &UpdateManager::RemoveSampler, &sampler );
1210 }
1211
1212 inline void SetFilterModeMessage( UpdateManager& manager, Render::Sampler& sampler, uint32_t minFilterMode, uint32_t magFilterMode )
1213 {
1214   using LocalType = MessageValue3<UpdateManager, Render::Sampler*, uint32_t, uint32_t>;
1215
1216   // Reserve some memory inside the message queue
1217   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1218
1219   // Construct message in the message queue memory; note that delete should not be called on the return value
1220   new (slot) LocalType( &manager, &UpdateManager::SetFilterMode, &sampler, minFilterMode, magFilterMode );
1221 }
1222
1223 inline void SetWrapModeMessage( UpdateManager& manager, Render::Sampler& sampler, uint32_t rWrapMode, uint32_t sWrapMode, uint32_t tWrapMode )
1224 {
1225   using LocalType = MessageValue4<UpdateManager, Render::Sampler*, uint32_t, uint32_t, uint32_t>;
1226
1227   // Reserve some memory inside the message queue
1228   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1229
1230   // Construct message in the message queue memory; note that delete should not be called on the return value
1231   new (slot) LocalType( &manager, &UpdateManager::SetWrapMode, &sampler, rWrapMode, sWrapMode, tWrapMode );
1232 }
1233
1234 inline void AddVertexBuffer( UpdateManager& manager, OwnerPointer< Render::VertexBuffer >& vertexBuffer )
1235 {
1236   // Message has ownership of vertexBuffer while in transit from event -> update
1237   using LocalType = MessageValue1<UpdateManager, OwnerPointer<Render::VertexBuffer> >;
1238
1239   // Reserve some memory inside the message queue
1240   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1241
1242   // Construct message in the message queue memory; note that delete should not be called on the return value
1243   new (slot) LocalType( &manager, &UpdateManager::AddVertexBuffer, vertexBuffer );
1244 }
1245
1246 inline void RemoveVertexBuffer( UpdateManager& manager, Render::VertexBuffer& vertexBuffer )
1247 {
1248   using LocalType = MessageValue1<UpdateManager, Render::VertexBuffer*>;
1249
1250   // Reserve some memory inside the message queue
1251   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1252
1253   // Construct message in the message queue memory; note that delete should not be called on the return value
1254   new (slot) LocalType( &manager, &UpdateManager::RemoveVertexBuffer, &vertexBuffer );
1255 }
1256
1257 inline void SetVertexBufferFormat( UpdateManager& manager, Render::VertexBuffer& vertexBuffer, OwnerPointer< Render::VertexBuffer::Format>& format )
1258 {
1259   // Message has ownership of VertexBuffer::Format while in transit from event -> update
1260   using LocalType = MessageValue2<UpdateManager, Render::VertexBuffer*, OwnerPointer<Render::VertexBuffer::Format> >;
1261
1262   // Reserve some memory inside the message queue
1263   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1264
1265   // Construct message in the message queue memory; note that delete should not be called on the return value
1266   new (slot) LocalType( &manager, &UpdateManager::SetVertexBufferFormat, &vertexBuffer, format );
1267 }
1268
1269 inline void SetVertexBufferData( UpdateManager& manager, Render::VertexBuffer& vertexBuffer, OwnerPointer< Vector<uint8_t> >& data, uint32_t size )
1270 {
1271   // Message has ownership of VertexBuffer data while in transit from event -> update
1272   using LocalType = MessageValue3<UpdateManager, Render::VertexBuffer*, OwnerPointer<Vector<uint8_t> >, uint32_t>;
1273
1274   // Reserve some memory inside the message queue
1275   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1276
1277   // Construct message in the message queue memory; note that delete should not be called on the return value
1278   new (slot) LocalType( &manager, &UpdateManager::SetVertexBufferData, &vertexBuffer, data, size );
1279 }
1280
1281 inline void AddGeometry( UpdateManager& manager, OwnerPointer< Render::Geometry >& geometry )
1282 {
1283   // Message has ownership of Geometry while in transit from event -> update
1284   using LocalType = MessageValue1<UpdateManager, OwnerPointer<Render::Geometry> >;
1285
1286   // Reserve some memory inside the message queue
1287   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1288
1289   // Construct message in the message queue memory; note that delete should not be called on the return value
1290   new (slot) LocalType( &manager, &UpdateManager::AddGeometry, geometry );
1291 }
1292
1293 inline void RemoveGeometry( UpdateManager& manager, Render::Geometry& geometry )
1294 {
1295   using LocalType = MessageValue1<UpdateManager, Render::Geometry*>;
1296
1297   // Reserve some memory inside the message queue
1298   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1299
1300   // Construct message in the message queue memory; note that delete should not be called on the return value
1301   new (slot) LocalType( &manager, &UpdateManager::RemoveGeometry, &geometry );
1302 }
1303
1304 inline void AttachVertexBufferMessage( UpdateManager& manager, Render::Geometry& geometry, const Render::VertexBuffer& vertexBuffer )
1305 {
1306   using LocalType = MessageValue2<UpdateManager, Render::Geometry*, Render::VertexBuffer*>;
1307
1308   // Reserve some memory inside the message queue
1309   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1310
1311   // Construct message in the message queue memory; note that delete should not be called on the return value
1312   new (slot) LocalType( &manager, &UpdateManager::AttachVertexBuffer, &geometry, const_cast<Render::VertexBuffer*>(&vertexBuffer) );
1313 }
1314
1315 inline void RemoveVertexBufferMessage( UpdateManager& manager, Render::Geometry& geometry, const Render::VertexBuffer& vertexBuffer )
1316 {
1317   using LocalType = MessageValue2<UpdateManager, Render::Geometry*, Render::VertexBuffer*>;
1318
1319   // Reserve some memory inside the message queue
1320   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1321
1322   // Construct message in the message queue memory; note that delete should not be called on the return value
1323   new (slot) LocalType( &manager, &UpdateManager::RemoveVertexBuffer, &geometry, const_cast<Render::VertexBuffer*>(&vertexBuffer) );
1324 }
1325
1326 // Custom message type for SetIndexBuffer() used to move data with Vector::Swap()
1327 template< typename T >
1328 class IndexBufferMessage : public MessageBase
1329 {
1330 public:
1331
1332   /**
1333    * Constructor which does a Vector::Swap()
1334    */
1335   IndexBufferMessage( T* manager, Render::Geometry* geometry, Dali::Vector<uint16_t>& indices )
1336   : MessageBase(),
1337     mManager( manager ),
1338     mRenderGeometry( geometry )
1339   {
1340     mIndices.Swap( indices );
1341   }
1342
1343   /**
1344    * Virtual destructor
1345    */
1346   ~IndexBufferMessage() override = default;
1347
1348   /**
1349    * @copydoc MessageBase::Process
1350    */
1351   void Process( BufferIndex /*bufferIndex*/ ) override
1352   {
1353     DALI_ASSERT_DEBUG( mManager && "Message does not have an object" );
1354     mManager->SetIndexBuffer( mRenderGeometry, mIndices );
1355   }
1356
1357 private:
1358
1359   T* mManager;
1360   Render::Geometry* mRenderGeometry;
1361   Dali::Vector<uint16_t> mIndices;
1362 };
1363
1364 inline void SetIndexBufferMessage( UpdateManager& manager, Render::Geometry& geometry, Dali::Vector<uint16_t>& indices )
1365 {
1366   using LocalType = IndexBufferMessage<UpdateManager>;
1367
1368   // Reserve some memory inside the message queue
1369   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1370
1371   // Construct message in the message queue memory; note that delete should not be called on the return value
1372   new (slot) LocalType( &manager, &geometry, indices );
1373 }
1374
1375 inline void SetGeometryTypeMessage( UpdateManager& manager, Render::Geometry& geometry, uint32_t geometryType )
1376 {
1377   using LocalType = MessageValue2<UpdateManager, Render::Geometry*, uint32_t>;
1378
1379   // Reserve some memory inside the message queue
1380   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1381
1382   // Construct message in the message queue memory; note that delete should not be called on the return value
1383   new (slot) LocalType( &manager, &UpdateManager::SetGeometryType, &geometry, geometryType );
1384 }
1385
1386 inline void AddTexture( UpdateManager& manager, OwnerPointer< Render::Texture >& texture )
1387 {
1388   // Message has ownership of Texture while in transit from event -> update
1389   using LocalType = MessageValue1<UpdateManager, OwnerPointer<Render::Texture> >;
1390
1391   // Reserve some memory inside the message queue
1392   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1393
1394   // Construct message in the message queue memory; note that delete should not be called on the return value
1395   new (slot) LocalType( &manager, &UpdateManager::AddTexture, texture );
1396 }
1397
1398 inline void RemoveTexture( UpdateManager& manager, Render::Texture& texture )
1399 {
1400   using LocalType = MessageValue1<UpdateManager, Render::Texture*>;
1401
1402   // Reserve some memory inside the message queue
1403   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1404
1405   // Construct message in the message queue memory; note that delete should not be called on the return value
1406   new (slot) LocalType( &manager, &UpdateManager::RemoveTexture, &texture );
1407 }
1408
1409 inline void UploadTextureMessage( UpdateManager& manager, Render::Texture& texture, PixelDataPtr pixelData, const Texture::UploadParams& params )
1410 {
1411   using LocalType = MessageValue3<UpdateManager, Render::Texture*, PixelDataPtr, Texture::UploadParams>;
1412
1413   // Reserve some memory inside the message queue
1414   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1415
1416   // Construct message in the message queue memory; note that delete should not be called on the return value
1417   new (slot) LocalType( &manager, &UpdateManager::UploadTexture, &texture, pixelData, params );
1418 }
1419
1420 inline void GenerateMipmapsMessage( UpdateManager& manager, Render::Texture& texture )
1421 {
1422   using LocalType = MessageValue1<UpdateManager, Render::Texture*>;
1423
1424   // Reserve some memory inside the message queue
1425   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1426
1427   // Construct message in the message queue memory; note that delete should not be called on the return value
1428   new (slot) LocalType( &manager, &UpdateManager::GenerateMipmaps, &texture );
1429 }
1430
1431
1432 inline void AddFrameBuffer( UpdateManager& manager, OwnerPointer< Render::FrameBuffer >& frameBuffer )
1433 {
1434   using LocalType = MessageValue1<UpdateManager, OwnerPointer<Render::FrameBuffer> >;
1435
1436   // Reserve some memory inside the message queue
1437   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1438
1439   // Construct message in the message queue memory; note that delete should not be called on the return value
1440   new (slot) LocalType( &manager, &UpdateManager::AddFrameBuffer, frameBuffer );
1441 }
1442
1443 inline void RemoveFrameBuffer( UpdateManager& manager, Render::FrameBuffer& frameBuffer )
1444 {
1445   using LocalType = MessageValue1<UpdateManager, Render::FrameBuffer*>;
1446
1447   // Reserve some memory inside the message queue
1448   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1449
1450   // Construct message in the message queue memory; note that delete should not be called on the return value
1451   new (slot) LocalType( &manager, &UpdateManager::RemoveFrameBuffer, &frameBuffer );
1452 }
1453
1454 inline void AttachColorTextureToFrameBuffer( UpdateManager& manager, Render::FrameBuffer& frameBuffer, Render::Texture* texture, uint32_t mipmapLevel, uint32_t layer )
1455 {
1456   using LocalType = MessageValue4<UpdateManager, Render::FrameBuffer*, Render::Texture*, uint32_t, uint32_t>;
1457
1458   // Reserve some memory inside the message queue
1459   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1460
1461   // Construct message in the message queue memory; note that delete should not be called on the return value
1462   new (slot) LocalType( &manager, &UpdateManager::AttachColorTextureToFrameBuffer, &frameBuffer, texture, mipmapLevel, layer );
1463 }
1464
1465 inline void AttachDepthTextureToFrameBuffer( UpdateManager& manager, Render::FrameBuffer& frameBuffer, Render::Texture* texture, uint32_t mipmapLevel )
1466 {
1467   using LocalType = MessageValue3<UpdateManager, Render::FrameBuffer*, Render::Texture*, uint32_t>;
1468
1469   // Reserve some memory inside the message queue
1470   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1471
1472   // Construct message in the message queue memory; note that delete should not be called on the return value
1473   new (slot) LocalType( &manager, &UpdateManager::AttachDepthTextureToFrameBuffer, &frameBuffer, texture, mipmapLevel );
1474 }
1475
1476 inline void AttachDepthStencilTextureToFrameBuffer( UpdateManager& manager, Render::FrameBuffer& frameBuffer, Render::Texture* texture, uint32_t mipmapLevel )
1477 {
1478   using LocalType = MessageValue3<UpdateManager, Render::FrameBuffer*, Render::Texture*, uint32_t>;
1479
1480   // Reserve some memory inside the message queue
1481   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1482
1483   // Construct message in the message queue memory; note that delete should not be called on the return value
1484   new (slot) LocalType( &manager, &UpdateManager::AttachDepthStencilTextureToFrameBuffer, &frameBuffer, texture, mipmapLevel );
1485 }
1486
1487 inline void SetDepthIndicesMessage( UpdateManager& manager, OwnerPointer< NodeDepths >& nodeDepths )
1488 {
1489   using LocalType = MessageValue1<UpdateManager, OwnerPointer<NodeDepths> >;
1490
1491   // Reserve some memory inside the message queue
1492   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1493
1494   // Construct message in the message queue memory; note that delete should not be called on the return value
1495   new (slot) LocalType( &manager, &UpdateManager::SetDepthIndices, nodeDepths );
1496 }
1497
1498 inline void AddResetterMessage( UpdateManager& manager, OwnerPointer<PropertyResetterBase> resetter )
1499 {
1500   using LocalType = MessageValue1<UpdateManager, OwnerPointer<PropertyResetterBase> >;
1501
1502   // Reserve some memory inside the message queue
1503   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1504
1505   // Construct message in the message queue memory; note that delete should not be called on the return value
1506   new (slot) LocalType( &manager, &UpdateManager::AddPropertyResetter, resetter );
1507 }
1508
1509 inline void AddFrameCallbackMessage( UpdateManager& manager, OwnerPointer< FrameCallback >& frameCallback, const Node& rootNode )
1510 {
1511   using LocalType = MessageValue2<UpdateManager, OwnerPointer<FrameCallback>, const Node*>;
1512
1513   // Reserve some memory inside the message queue
1514   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1515
1516   // Construct message in the message queue memory; note that delete should not be called on the return value
1517   new (slot) LocalType( &manager, &UpdateManager::AddFrameCallback, frameCallback, &rootNode );
1518 }
1519
1520 inline void RemoveFrameCallbackMessage( UpdateManager& manager, FrameCallbackInterface& frameCallback )
1521 {
1522   using LocalType = MessageValue1<UpdateManager, FrameCallbackInterface*>;
1523
1524   // Reserve some memory inside the message queue
1525   uint32_t* slot = manager.ReserveMessageSlot( sizeof( LocalType ) );
1526
1527   // Construct message in the message queue memory; note that delete should not be called on the return value
1528   new (slot) LocalType( &manager, &UpdateManager::RemoveFrameCallback, &frameCallback );
1529 }
1530
1531 } // namespace SceneGraph
1532
1533 } // namespace Internal
1534
1535 } // namespace Dali
1536
1537 #endif // DALI_INTERNAL_SCENE_GRAPH_UPDATE_MANAGER_H