d818dcddb83f81602eaf0e9581cd5537c798e221
[platform/core/uifw/dali-core.git] / dali / internal / update / rendering / scene-graph-renderer.h
1 #ifndef DALI_INTERNAL_SCENE_GRAPH_RENDERER_H
2 #define DALI_INTERNAL_SCENE_GRAPH_RENDERER_H
3
4 /*
5  * Copyright (c) 2022 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 #include <dali/devel-api/rendering/renderer-devel.h>
21 #include <dali/internal/common/blending-options.h>
22 #include <dali/internal/common/type-abstraction-enums.h>
23 #include <dali/internal/event/common/event-thread-services.h>
24 #include <dali/internal/event/rendering/visual-renderer-impl.h>
25 #include <dali/internal/render/data-providers/render-data-provider.h>
26 #include <dali/internal/render/renderers/render-renderer.h>
27 #include <dali/internal/update/common/animatable-property.h>
28 #include <dali/internal/update/common/property-owner.h>
29 #include <dali/internal/update/common/scene-graph-connection-change-propagator.h>
30 #include <dali/internal/update/common/uniform-map.h>
31 #include <dali/public-api/rendering/geometry.h>
32 #include <dali/public-api/rendering/renderer.h> // Dali::Renderer
33
34 namespace Dali
35 {
36 namespace Internal
37 {
38 namespace Render
39 {
40 class Renderer;
41 class Geometry;
42 } // namespace Render
43
44 namespace SceneGraph
45 {
46 class SceneController;
47
48 class Renderer;
49 using RendererContainer = Dali::Vector<Renderer*>;
50 using RendererIter      = RendererContainer::Iterator;
51 using RendererConstIter = RendererContainer::ConstIterator;
52
53 class TextureSet;
54 class Geometry;
55
56 class Renderer : public PropertyOwner,
57                  public UniformMapDataProvider,
58                  public RenderDataProvider,
59                  public UniformMap::Observer,
60                  public ConnectionChangePropagator::Observer
61 {
62 public:
63   enum OpacityType
64   {
65     OPAQUE,
66     TRANSPARENT,
67     TRANSLUCENT
68   };
69
70   /**
71    * Construct a new Renderer
72    */
73   static Renderer* New();
74
75   /**
76    * Destructor
77    */
78   ~Renderer() override;
79
80   /**
81    * Overriden delete operator
82    * Deletes the renderer from its global memory pool
83    */
84   void operator delete(void* ptr);
85
86   /**
87    * Set the texture set for the renderer
88    * @param[in] textureSet The texture set this renderer will use
89    */
90   void SetTextures(TextureSet* textureSet);
91
92   const SceneGraph::TextureSet* GetTextureSet() const
93   {
94     return mTextureSet;
95   }
96
97   /**
98    * @copydoc RenderDataProvider::GetTextures()
99    */
100   const Vector<Render::Texture*>* GetTextures() const override;
101
102   /**
103    * @copydoc RenderDataProvider::GetSamplers()
104    */
105   const Vector<Render::Sampler*>* GetSamplers() const override;
106
107   /**
108    * Set the shader for the renderer
109    * @param[in] shader The shader this renderer will use
110    */
111   void SetShader(Shader* shader);
112
113   /**
114    * @copydoc RenderDataProvider::GetShader()
115    */
116   const Shader& GetShader() const override
117   {
118     return *mShader;
119   }
120
121   /**
122    * Set the geometry for the renderer
123    * @param[in] geometry The geometry this renderer will use
124    */
125   void SetGeometry(Render::Geometry* geometry);
126
127   /**
128    * Set the depth index
129    * @param[in] depthIndex the new depth index to use
130    */
131   void SetDepthIndex(int depthIndex);
132
133   /**
134    * @brief Get the depth index
135    * @return The depth index
136    */
137   int GetDepthIndex() const
138   {
139     return mDepthIndex;
140   }
141
142   /**
143    * Set the face culling mode
144    * @param[in] faceCullingMode to use
145    */
146   void SetFaceCullingMode(FaceCullingMode::Type faceCullingMode);
147
148   /**
149    * Get face culling mode
150    * @return The face culling mode
151    */
152   FaceCullingMode::Type GetFaceCullingMode() const;
153
154   /**
155    * Set the blending mode
156    * @param[in] blendingMode to use
157    */
158   void SetBlendMode(BlendMode::Type blendingMode);
159
160   /**
161    * Get the blending mode
162    * @return The the blending mode
163    */
164   BlendMode::Type GetBlendMode() const;
165
166   /**
167    * Set the blending options. This should only be called from the update thread.
168    * @param[in] options A bitmask of blending options.
169    */
170   void SetBlendingOptions(uint32_t options);
171
172   /**
173    * Get the blending options
174    * @return The the blending mode
175    */
176   uint32_t GetBlendingOptions() const;
177
178   /**
179    * Set the blend color for blending operation
180    * @param blendColor to pass to GL
181    */
182   void SetBlendColor(const Vector4& blendColor);
183
184   /**
185    * Get the blending color
186    * @return The blend color
187    */
188   Vector4 GetBlendColor() const;
189
190   /**
191    * Set the index of first element for indexed draw
192    * @param[in] firstElement index of first element to draw
193    */
194   void SetIndexedDrawFirstElement(uint32_t firstElement);
195
196   /**
197    * Get the index of first element for indexed draw
198    * @return The index of first element for indexed draw
199    */
200   uint32_t GetIndexedDrawFirstElement() const;
201
202   /**
203    * Set the number of elements to draw by indexed draw
204    * @param[in] elementsCount number of elements to draw
205    */
206   void SetIndexedDrawElementsCount(uint32_t elementsCount);
207
208   /**
209    * Get the number of elements to draw by indexed draw
210    * @return The number of elements to draw by indexed draw
211    */
212   uint32_t GetIndexedDrawElementsCount() const;
213
214   /**
215    * @brief Set whether the Pre-multiplied Alpha Blending is required
216    * @param[in] preMultipled whether alpha is pre-multiplied.
217    */
218   void EnablePreMultipliedAlpha(bool preMultipled);
219
220   /**
221    * @brief Query whether alpha is pre-multiplied.
222    * @return True is alpha is pre-multiplied, false otherwise.
223    */
224   bool IsPreMultipliedAlphaEnabled() const;
225
226   /**
227    * Sets the depth buffer write mode
228    * @param[in] depthWriteMode The depth buffer write mode
229    */
230   void SetDepthWriteMode(DepthWriteMode::Type depthWriteMode);
231
232   /**
233    * Get the depth buffer write mode
234    * @return The depth buffer write mode
235    */
236   DepthWriteMode::Type GetDepthWriteMode() const;
237
238   /**
239    * Sets the depth buffer test mode
240    * @param[in] depthTestMode The depth buffer test mode
241    */
242   void SetDepthTestMode(DepthTestMode::Type depthTestMode);
243
244   /**
245    * Get the depth buffer test mode
246    * @return The depth buffer test mode
247    */
248   DepthTestMode::Type GetDepthTestMode() const;
249
250   /**
251    * Sets the depth function
252    * @param[in] depthFunction The depth function
253    */
254   void SetDepthFunction(DepthFunction::Type depthFunction);
255
256   /**
257    * Get the depth function
258    * @return The depth function
259    */
260   DepthFunction::Type GetDepthFunction() const;
261
262   /**
263    * Sets the render mode
264    * @param[in] mode The render mode
265    */
266   void SetRenderMode(RenderMode::Type mode);
267
268   /**
269    * Sets the stencil function
270    * @param[in] stencilFunction The stencil function
271    */
272   void SetStencilFunction(StencilFunction::Type stencilFunction);
273
274   /**
275    * Sets the stencil function mask
276    * @param[in] stencilFunctionMask The stencil function mask
277    */
278   void SetStencilFunctionMask(int stencilFunctionMask);
279
280   /**
281    * Sets the stencil function reference
282    * @param[in] stencilFunctionReference The stencil function reference
283    */
284   void SetStencilFunctionReference(int stencilFunctionReference);
285
286   /**
287    * Sets the stencil mask
288    * @param[in] stencilMask The stencil mask
289    */
290   void SetStencilMask(int stencilMask);
291
292   /**
293    * Sets the stencil operation for when the stencil test fails
294    * @param[in] stencilOperationOnFail The stencil operation
295    */
296   void SetStencilOperationOnFail(StencilOperation::Type stencilOperationOnFail);
297
298   /**
299    * Sets the stencil operation for when the depth test fails
300    * @param[in] stencilOperationOnZFail The stencil operation
301    */
302   void SetStencilOperationOnZFail(StencilOperation::Type stencilOperationOnZFail);
303
304   /**
305    * Sets the stencil operation for when the depth test passes
306    * @param[in] stencilOperationOnZPass The stencil operation
307    */
308   void SetStencilOperationOnZPass(StencilOperation::Type stencilOperationOnZPass);
309
310   /**
311    * Gets the stencil parameters
312    * @return The stencil parameters
313    */
314   const Render::Renderer::StencilParameters& GetStencilParameters() const;
315
316   /**
317    * Bakes the opacity
318    * @param[in] updateBufferIndex The current update buffer index.
319    * @param[in] opacity The opacity
320    */
321   void BakeOpacity(BufferIndex updateBufferIndex, float opacity);
322
323   /**
324    * @copydoc RenderDataProvider::GetOpacity()
325    */
326   float GetOpacity(BufferIndex updateBufferIndex) const override;
327
328   /**
329    * Sets the rendering behavior
330    * @param[in] renderingBehavior The rendering behavior required.
331    */
332   void SetRenderingBehavior(DevelRenderer::Rendering::Type renderingBehavior);
333
334   /**
335    * Gets the rendering behavior
336    * @return The rendering behavior
337    */
338   DevelRenderer::Rendering::Type GetRenderingBehavior() const;
339
340   /**
341    * Prepare the object for rendering.
342    * This is called by the UpdateManager when an object is due to be rendered in the current frame.
343    * @param[in] updateBufferIndex The current update buffer index.
344    * @return Whether this renderer has been updated in the current frame
345    */
346   bool PrepareRender(BufferIndex updateBufferIndex);
347
348   /**
349    * Retrieve the Render thread renderer
350    * @return The associated render thread renderer
351    */
352   Render::Renderer& GetRenderer();
353
354   /**
355    * Query whether the renderer is fully opaque, fully transparent or transparent.
356    * @param[in] updateBufferIndex The current update buffer index.
357    * @return OPAQUE if fully opaque, TRANSPARENT if fully transparent and TRANSLUCENT if in between
358    */
359   OpacityType GetOpacityType(BufferIndex updateBufferIndex, const Node& node) const;
360
361   /**
362    * Connect the object to the scene graph
363    *
364    * @param[in] sceneController The scene controller - used for sending messages to render thread
365    * @param[in] bufferIndex The current buffer index - used for sending messages to render thread
366    */
367   void ConnectToSceneGraph(SceneController& sceneController, BufferIndex bufferIndex);
368
369   /**
370    * Disconnect the object from the scene graph
371    * @param[in] sceneController The scene controller - used for sending messages to render thread
372    * @param[in] bufferIndex The current buffer index - used for sending messages to render thread
373    */
374   void DisconnectFromSceneGraph(SceneController& sceneController, BufferIndex bufferIndex);
375
376   /**
377    * @copydoc RenderDataProvider::GetUniformMapDataProvider()
378    */
379   const UniformMapDataProvider& GetUniformMapDataProvider() const override
380   {
381     return *this;
382   };
383
384 public: // Implementation of ConnectionChangePropagator
385   /**
386    * @copydoc ConnectionChangePropagator::AddObserver
387    */
388   void AddConnectionObserver(ConnectionChangePropagator::Observer& observer){};
389
390   /**
391    * @copydoc ConnectionChangePropagator::RemoveObserver
392    */
393   void RemoveConnectionObserver(ConnectionChangePropagator::Observer& observer){};
394
395 public: // UniformMap::Observer
396   /**
397    * @copydoc UniformMap::Observer::UniformMappingsChanged
398    */
399   void UniformMappingsChanged(const UniformMap& mappings) override;
400
401 public: // ConnectionChangePropagator::Observer
402   /**
403    * @copydoc ConnectionChangePropagator::ConnectionsChanged
404    */
405   void ConnectionsChanged(PropertyOwner& owner) override;
406
407   /**
408    * @copydoc ConnectionChangePropagator::ConnectedUniformMapChanged
409    */
410   void ConnectedUniformMapChanged() override;
411
412   /**
413    * @copydoc ConnectionChangePropagator::ConnectedUniformMapChanged
414    */
415   void ObservedObjectDestroyed(PropertyOwner& owner) override;
416
417 public: // PropertyOwner implementation
418   /**
419    * @copydoc Dali::Internal::SceneGraph::PropertyOwner::ResetDefaultProperties()
420    */
421   virtual void ResetDefaultProperties(BufferIndex updateBufferIndex){};
422
423 public: // From UniformMapDataProvider
424   /**
425    * @copydoc UniformMapDataProvider::GetUniformMapChanged
426    */
427   bool GetUniformMapChanged(BufferIndex bufferIndex) const override
428   {
429     return mUniformMapChanged[bufferIndex];
430   }
431
432   /**
433    * @copydoc UniformMapDataProvider::GetUniformMap
434    */
435   const CollectedUniformMap& GetUniformMap(BufferIndex bufferIndex) const override;
436
437   void SetDrawCommands(Dali::DevelRenderer::DrawCommand* pDrawCommands, uint32_t size);
438
439 public: // For VisualProperties
440   /**
441    * To be used only for 1st stage initialization in event thread.
442    */
443   void SetVisualProperties(Internal::VisualRenderer::AnimatableVisualProperties* visualProperties)
444   {
445     mVisualProperties = visualProperties;
446   }
447
448   /**
449    * May be accessed from event thread
450    */
451   const Internal::VisualRenderer::AnimatableVisualProperties* GetVisualProperties() const
452   {
453     return mVisualProperties;
454   }
455
456 private:
457   /**
458    * Protected constructor; See also Renderer::New()
459    */
460   Renderer();
461
462 private:
463   CollectedUniformMap mCollectedUniformMap[2]; ///< Uniform maps collected by the renderer
464
465   SceneController*                            mSceneController;           ///< Used for initializing renderers
466   Render::Renderer*                           mRenderer;                  ///< Raw pointer to the renderer (that's owned by RenderManager)
467   TextureSet*                                 mTextureSet;                ///< The texture set this renderer uses. (Not owned)
468   Render::Geometry*                           mGeometry;                  ///< The geometry this renderer uses. (Not owned)
469   Shader*                                     mShader;                    ///< The shader this renderer uses. (Not owned)
470   VisualRenderer::AnimatableVisualProperties* mVisualProperties{nullptr}; ///< VisualProperties (optional/owned)
471   OwnerPointer<Vector4>                       mBlendColor;                ///< The blend color for blending operation
472
473   Dali::Internal::Render::Renderer::StencilParameters mStencilParameters; ///< Struct containing all stencil related options
474
475   uint32_t mIndexedDrawFirstElement;  ///< first element index to be drawn using indexed draw
476   uint32_t mIndexedDrawElementsCount; ///< number of elements to be drawn using indexed draw
477   uint32_t mBlendBitmask;             ///< The bitmask of blending options
478   uint32_t mRegenerateUniformMap;     ///< 2 if the map should be regenerated, 1 if it should be copied.
479   uint32_t mResendFlag;               ///< Indicate whether data should be resent to the renderer
480
481   DepthFunction::Type            mDepthFunction : 4;            ///< Local copy of the depth function
482   FaceCullingMode::Type          mFaceCullingMode : 3;          ///< Local copy of the mode of face culling
483   BlendMode::Type                mBlendMode : 3;                ///< Local copy of the mode of blending
484   DepthWriteMode::Type           mDepthWriteMode : 3;           ///< Local copy of the depth write mode
485   DepthTestMode::Type            mDepthTestMode : 3;            ///< Local copy of the depth test mode
486   DevelRenderer::Rendering::Type mRenderingBehavior : 2;        ///< The rendering behavior
487   bool                           mUniformMapChanged[2];         ///< Records if the uniform map has been altered this frame
488   bool                           mPremultipledAlphaEnabled : 1; ///< Flag indicating whether the Pre-multiplied Alpha Blending is required
489
490   std::vector<Dali::DevelRenderer::DrawCommand> mDrawCommands;
491
492 public:
493   AnimatableProperty<float> mOpacity;    ///< The opacity value
494   int32_t                   mDepthIndex; ///< Used only in PrepareRenderInstructions
495 };
496
497 /// Messages
498 inline void SetTexturesMessage(EventThreadServices& eventThreadServices, const Renderer& renderer, const TextureSet& textureSet)
499 {
500   using LocalType = MessageValue1<Renderer, TextureSet*>;
501
502   // Reserve some memory inside the message queue
503   uint32_t* slot = eventThreadServices.ReserveMessageSlot(sizeof(LocalType));
504
505   // Construct message in the message queue memory; note that delete should not be called on the return value
506   new(slot) LocalType(&renderer, &Renderer::SetTextures, const_cast<TextureSet*>(&textureSet));
507 }
508
509 inline void SetGeometryMessage(EventThreadServices& eventThreadServices, const Renderer& renderer, const Render::Geometry& geometry)
510 {
511   using LocalType = MessageValue1<Renderer, Render::Geometry*>;
512
513   // Reserve some memory inside the message queue
514   uint32_t* slot = eventThreadServices.ReserveMessageSlot(sizeof(LocalType));
515
516   // Construct message in the message queue memory; note that delete should not be called on the return value
517   new(slot) LocalType(&renderer, &Renderer::SetGeometry, const_cast<Render::Geometry*>(&geometry));
518 }
519
520 inline void SetShaderMessage(EventThreadServices& eventThreadServices, const Renderer& renderer, const Shader& shader)
521 {
522   using LocalType = MessageValue1<Renderer, Shader*>;
523
524   // Reserve some memory inside the message queue
525   uint32_t* slot = eventThreadServices.ReserveMessageSlot(sizeof(LocalType));
526
527   // Construct message in the message queue memory; note that delete should not be called on the return value
528   new(slot) LocalType(&renderer, &Renderer::SetShader, const_cast<Shader*>(&shader));
529 }
530
531 inline void SetDepthIndexMessage(EventThreadServices& eventThreadServices, const Renderer& renderer, int depthIndex)
532 {
533   using LocalType = MessageValue1<Renderer, int>;
534
535   // Reserve some memory inside the message queue
536   uint32_t* slot = eventThreadServices.ReserveMessageSlot(sizeof(LocalType));
537
538   // Construct message in the message queue memory; note that delete should not be called on the return value
539   new(slot) LocalType(&renderer, &Renderer::SetDepthIndex, depthIndex);
540 }
541
542 inline void SetFaceCullingModeMessage(EventThreadServices& eventThreadServices, const Renderer& renderer, FaceCullingMode::Type faceCullingMode)
543 {
544   using LocalType = MessageValue1<Renderer, FaceCullingMode::Type>;
545
546   // Reserve some memory inside the message queue
547   uint32_t* slot = eventThreadServices.ReserveMessageSlot(sizeof(LocalType));
548
549   new(slot) LocalType(&renderer, &Renderer::SetFaceCullingMode, faceCullingMode);
550 }
551
552 inline void SetBlendModeMessage(EventThreadServices& eventThreadServices, const Renderer& renderer, BlendMode::Type blendingMode)
553 {
554   using LocalType = MessageValue1<Renderer, BlendMode::Type>;
555
556   // Reserve some memory inside the message queue
557   uint32_t* slot = eventThreadServices.ReserveMessageSlot(sizeof(LocalType));
558
559   new(slot) LocalType(&renderer, &Renderer::SetBlendMode, blendingMode);
560 }
561
562 inline void SetBlendingOptionsMessage(EventThreadServices& eventThreadServices, const Renderer& renderer, uint32_t options)
563 {
564   using LocalType = MessageValue1<Renderer, uint32_t>;
565
566   // Reserve some memory inside the message queue
567   uint32_t* slot = eventThreadServices.ReserveMessageSlot(sizeof(LocalType));
568
569   new(slot) LocalType(&renderer, &Renderer::SetBlendingOptions, options);
570 }
571
572 inline void SetBlendColorMessage(EventThreadServices& eventThreadServices, const Renderer& renderer, const Vector4& blendColor)
573 {
574   using LocalType = MessageValue1<Renderer, Vector4>;
575
576   // Reserve some memory inside the message queue
577   uint32_t* slot = eventThreadServices.ReserveMessageSlot(sizeof(LocalType));
578
579   new(slot) LocalType(&renderer, &Renderer::SetBlendColor, blendColor);
580 }
581
582 inline void SetIndexedDrawFirstElementMessage(EventThreadServices& eventThreadServices, const Renderer& renderer, uint32_t firstElement)
583 {
584   using LocalType = MessageValue1<Renderer, uint32_t>;
585
586   // Reserve some memory inside the message queue
587   uint32_t* slot = eventThreadServices.ReserveMessageSlot(sizeof(LocalType));
588
589   new(slot) LocalType(&renderer, &Renderer::SetIndexedDrawFirstElement, firstElement);
590 }
591
592 inline void SetIndexedDrawElementsCountMessage(EventThreadServices& eventThreadServices, const Renderer& renderer, uint32_t elementsCount)
593 {
594   using LocalType = MessageValue1<Renderer, uint32_t>;
595
596   // Reserve some memory inside the message queue
597   uint32_t* slot = eventThreadServices.ReserveMessageSlot(sizeof(LocalType));
598
599   new(slot) LocalType(&renderer, &Renderer::SetIndexedDrawElementsCount, elementsCount);
600 }
601
602 inline void SetEnablePreMultipliedAlphaMessage(EventThreadServices& eventThreadServices, const Renderer& renderer, bool preMultiplied)
603 {
604   using LocalType = MessageValue1<Renderer, bool>;
605
606   // Reserve some memory inside the message queue
607   uint32_t* slot = eventThreadServices.ReserveMessageSlot(sizeof(LocalType));
608
609   new(slot) LocalType(&renderer, &Renderer::EnablePreMultipliedAlpha, preMultiplied);
610 }
611
612 inline void SetDepthWriteModeMessage(EventThreadServices& eventThreadServices, const Renderer& renderer, DepthWriteMode::Type depthWriteMode)
613 {
614   using LocalType = MessageValue1<Renderer, DepthWriteMode::Type>;
615
616   // Reserve some memory inside the message queue
617   uint32_t* slot = eventThreadServices.ReserveMessageSlot(sizeof(LocalType));
618
619   new(slot) LocalType(&renderer, &Renderer::SetDepthWriteMode, depthWriteMode);
620 }
621
622 inline void SetDepthTestModeMessage(EventThreadServices& eventThreadServices, const Renderer& renderer, DepthTestMode::Type depthTestMode)
623 {
624   using LocalType = MessageValue1<Renderer, DepthTestMode::Type>;
625
626   // Reserve some memory inside the message queue
627   uint32_t* slot = eventThreadServices.ReserveMessageSlot(sizeof(LocalType));
628
629   new(slot) LocalType(&renderer, &Renderer::SetDepthTestMode, depthTestMode);
630 }
631
632 inline void SetDepthFunctionMessage(EventThreadServices& eventThreadServices, const Renderer& renderer, DepthFunction::Type depthFunction)
633 {
634   using LocalType = MessageValue1<Renderer, DepthFunction::Type>;
635
636   // Reserve some memory inside the message queue
637   uint32_t* slot = eventThreadServices.ReserveMessageSlot(sizeof(LocalType));
638
639   new(slot) LocalType(&renderer, &Renderer::SetDepthFunction, depthFunction);
640 }
641
642 inline void SetRenderModeMessage(EventThreadServices& eventThreadServices, const Renderer& renderer, RenderMode::Type mode)
643 {
644   using LocalType = MessageValue1<Renderer, RenderMode::Type>;
645
646   // Reserve some memory inside the message queue
647   uint32_t* slot = eventThreadServices.ReserveMessageSlot(sizeof(LocalType));
648
649   new(slot) LocalType(&renderer, &Renderer::SetRenderMode, mode);
650 }
651
652 inline void SetStencilFunctionMessage(EventThreadServices& eventThreadServices, const Renderer& renderer, StencilFunction::Type stencilFunction)
653 {
654   using LocalType = MessageValue1<Renderer, StencilFunction::Type>;
655
656   // Reserve some memory inside the message queue
657   uint32_t* slot = eventThreadServices.ReserveMessageSlot(sizeof(LocalType));
658
659   new(slot) LocalType(&renderer, &Renderer::SetStencilFunction, stencilFunction);
660 }
661
662 inline void SetStencilFunctionMaskMessage(EventThreadServices& eventThreadServices, const Renderer& renderer, int mask)
663 {
664   using LocalType = MessageValue1<Renderer, int>;
665
666   // Reserve some memory inside the message queue
667   uint32_t* slot = eventThreadServices.ReserveMessageSlot(sizeof(LocalType));
668
669   new(slot) LocalType(&renderer, &Renderer::SetStencilFunctionMask, mask);
670 }
671
672 inline void SetStencilFunctionReferenceMessage(EventThreadServices& eventThreadServices, const Renderer& renderer, int stencilFunctionReference)
673 {
674   using LocalType = MessageValue1<Renderer, int>;
675
676   // Reserve some memory inside the message queue
677   uint32_t* slot = eventThreadServices.ReserveMessageSlot(sizeof(LocalType));
678
679   new(slot) LocalType(&renderer, &Renderer::SetStencilFunctionReference, stencilFunctionReference);
680 }
681
682 inline void SetStencilMaskMessage(EventThreadServices& eventThreadServices, const Renderer& renderer, int stencilMask)
683 {
684   using LocalType = MessageValue1<Renderer, int>;
685
686   // Reserve some memory inside the message queue
687   uint32_t* slot = eventThreadServices.ReserveMessageSlot(sizeof(LocalType));
688
689   new(slot) LocalType(&renderer, &Renderer::SetStencilMask, stencilMask);
690 }
691
692 inline void SetStencilOperationOnFailMessage(EventThreadServices& eventThreadServices, const Renderer& renderer, StencilOperation::Type stencilOperation)
693 {
694   using LocalType = MessageValue1<Renderer, StencilOperation::Type>;
695
696   // Reserve some memory inside the message queue
697   uint32_t* slot = eventThreadServices.ReserveMessageSlot(sizeof(LocalType));
698
699   new(slot) LocalType(&renderer, &Renderer::SetStencilOperationOnFail, stencilOperation);
700 }
701
702 inline void SetStencilOperationOnZFailMessage(EventThreadServices& eventThreadServices, const Renderer& renderer, StencilOperation::Type stencilOperation)
703 {
704   using LocalType = MessageValue1<Renderer, StencilOperation::Type>;
705
706   // Reserve some memory inside the message queue
707   uint32_t* slot = eventThreadServices.ReserveMessageSlot(sizeof(LocalType));
708
709   new(slot) LocalType(&renderer, &Renderer::SetStencilOperationOnZFail, stencilOperation);
710 }
711
712 inline void SetStencilOperationOnZPassMessage(EventThreadServices& eventThreadServices, const Renderer& renderer, StencilOperation::Type stencilOperation)
713 {
714   using LocalType = MessageValue1<Renderer, StencilOperation::Type>;
715
716   // Reserve some memory inside the message queue
717   uint32_t* slot = eventThreadServices.ReserveMessageSlot(sizeof(LocalType));
718
719   new(slot) LocalType(&renderer, &Renderer::SetStencilOperationOnZPass, stencilOperation);
720 }
721
722 inline void BakeOpacityMessage(EventThreadServices& eventThreadServices, const Renderer& renderer, float opacity)
723 {
724   using LocalType = MessageDoubleBuffered1<Renderer, float>;
725
726   // Reserve some memory inside the message queue
727   uint32_t* slot = eventThreadServices.ReserveMessageSlot(sizeof(LocalType));
728
729   new(slot) LocalType(&renderer, &Renderer::BakeOpacity, opacity);
730 }
731
732 inline void SetRenderingBehaviorMessage(EventThreadServices& eventThreadServices, const Renderer& renderer, DevelRenderer::Rendering::Type renderingBehavior)
733 {
734   using LocalType = MessageValue1<Renderer, DevelRenderer::Rendering::Type>;
735
736   // Reserve some memory inside the message queue
737   uint32_t* slot = eventThreadServices.ReserveMessageSlot(sizeof(LocalType));
738
739   new(slot) LocalType(&renderer, &Renderer::SetRenderingBehavior, renderingBehavior);
740 }
741
742 inline void SetDrawCommandsMessage(EventThreadServices& eventThreadServices, const Renderer& renderer, Dali::DevelRenderer::DrawCommand* pDrawCommands, uint32_t size)
743 {
744   using LocalType = MessageValue2<Renderer, Dali::DevelRenderer::DrawCommand*, uint32_t>;
745
746   // Reserve some memory inside the message queue
747   uint32_t* slot = eventThreadServices.ReserveMessageSlot(sizeof(LocalType));
748
749   new(slot) LocalType(&renderer, &Renderer::SetDrawCommands, pDrawCommands, size);
750 }
751
752 } // namespace SceneGraph
753 } // namespace Internal
754 } // namespace Dali
755
756 #endif //  DALI_INTERNAL_SCENE_GRAPH_RENDERER_H