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