[dali_2.3.27] Merge branch 'devel/master'
[platform/core/uifw/dali-core.git] / dali / internal / update / nodes / scene-graph-layer.h
index a6f22fe..5f2c70a 100644 (file)
@@ -2,7 +2,7 @@
 #define DALI_INTERNAL_SCENE_GRAPH_LAYER_H
 
 /*
- * Copyright (c) 2022 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2024 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -77,7 +77,6 @@ namespace Internal
 {
 namespace SceneGraph
 {
-
 using RenderableContainer = Dali::Vector<Renderable>;
 
 /**
@@ -201,7 +200,7 @@ public:
    * @param[in] updateBufferIndex The current update buffer index.
    * @return Whether all child transform was clean or not.
    */
-  bool GetReuseRenderers(BufferIndex updateBufferIndex)
+  bool GetReuseRenderers(BufferIndex updateBufferIndex) const
   {
     return mAllChildTransformsClean[updateBufferIndex];
   }
@@ -243,10 +242,10 @@ private:
   Layer();
 
   // Delete copy and move
-  Layer(const Layer&)                = delete;
-  Layer(Layer&&)                     = delete;
+  Layer(const Layer&) = delete;
+  Layer(Layer&&)      = delete;
   Layer& operator=(const Layer& rhs) = delete;
-  Layer& operator=(Layer&& rhs)      = delete;
+  Layer& operator=(Layer&& rhs) = delete;
 
 public: // For update-algorithms
   RenderableContainer colorRenderables;