Revert "[Tizen] Temporarily force updateScene flag true when rendering behavior is...
authorJoogab Yun <joogab.yun@samsung.com>
Tue, 18 Aug 2020 07:05:44 +0000 (16:05 +0900)
committerJoogab Yun <joogab.yun@samsung.com>
Tue, 18 Aug 2020 07:05:44 +0000 (16:05 +0900)
This reverts commit 7c285cb5c37abb927e9078f310f30b3bd1828b22.

dali/internal/update/manager/update-manager.cpp

index 2d04a1e..a3e4534 100644 (file)
@@ -889,11 +889,10 @@ uint32_t UpdateManager::Update( float elapsedSeconds,
   const bool gestureUpdated = ProcessGestures( bufferIndex, lastVSyncTimeMilliseconds, nextVSyncTimeMilliseconds );
 
   bool updateScene = // The scene-graph requires an update if..
-      (mImpl->nodeDirtyFlags & RenderableUpdateFlags)                    ||    // ..nodes were dirty in previous frame OR
-      IsAnimationRunning()                                               ||    // ..at least one animation is running OR
-      mImpl->messageQueue.IsSceneUpdateRequired()                        ||    // ..a message that modifies the scene graph node tree is queued OR
-      (mImpl->renderingBehavior == DevelStage::Rendering::CONTINUOUSLY)  ||    // ..rendering behavior is DevelStage::Rendering::CONTINUOUSLY OR
-      gestureUpdated;                                                          // ..a gesture property was updated
+      (mImpl->nodeDirtyFlags & RenderableUpdateFlags) ||    // ..nodes were dirty in previous frame OR
+      IsAnimationRunning()                            ||    // ..at least one animation is running OR
+      mImpl->messageQueue.IsSceneUpdateRequired()     ||    // ..a message that modifies the scene graph node tree is queued OR
+      gestureUpdated;                                       // ..a gesture property was updated
 
   bool keepRendererRendering = false;