[Tizen] Fix partial update issue after VisualRenderer patch applied 48/312648/1 accepted/tizen/8.0/unified/20240613.160648
authorEunki, Hong <eunkiki.hong@samsung.com>
Wed, 12 Jun 2024 13:18:42 +0000 (22:18 +0900)
committerEunki, Hong <eunkiki.hong@samsung.com>
Wed, 12 Jun 2024 13:21:33 +0000 (22:21 +0900)
Change-Id: I0df716d6a4607ada01119c67f77f127a70566ab2
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
dali/internal/update/rendering/scene-graph-visual-renderer-property.h

index 7fc74a6..d1f8691 100644 (file)
@@ -79,8 +79,8 @@ struct VisualRendererCoefficientCacheBase
    */
   void ResetFlag()
   {
-    mUpdateCurrentFrame    = (mUpdatedFlag != Dali::Internal::SceneGraph::CLEAN_FLAG); ///< Keep the flag whether it was updated or not.
-    mCoefficientCalculated = (!mUpdateCurrentFrame);                                   ///< Re-calculate coefficient only if previous update flag was not clean.
+    mUpdateCurrentFrame = (mUpdatedFlag != Dali::Internal::SceneGraph::CLEAN_FLAG); ///< Keep the flag whether it was updated or not.
+    mCoefficientCalculated &= (!mUpdateCurrentFrame);                               ///< Re-calculate coefficient only if previous update flag was not clean.
 
     mUpdatedFlag >>= 1;
   }