Revert "[Tizen] Fix partial update issue after VisualRenderer patch applied"
authorjykeon <jykeon@samsung.com>
Tue, 18 Jun 2024 06:50:24 +0000 (15:50 +0900)
committerjykeon <jykeon@samsung.com>
Tue, 18 Jun 2024 06:50:24 +0000 (15:50 +0900)
This reverts commit cbb873b5bc7a844d7448f4e9b563e52afa64b4c5.

dali/internal/update/rendering/scene-graph-visual-renderer-property.h

index d1f8691..7fc74a6 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;
   }