[Tizen] Do not skip rendering if update required keep rendering accepted/tizen/unified/20240213.171953 accepted/tizen/unified/x/20240219.013940
authorjoogab.yun <joogab.yun@samsung.com>
Tue, 13 Feb 2024 06:12:01 +0000 (15:12 +0900)
committerjoogab.yun <joogab.yun@samsung.com>
Tue, 13 Feb 2024 06:12:04 +0000 (15:12 +0900)
This reverts commit 482aaf9a8a4236605de4f89cfb4a0ccc0a9c2eb7.

Change-Id: Ibf6689f0084f5972f3ebc1e25660394b0ba23aab

dali/internal/adaptor/common/combined-update-render-controller.cpp

index e87d65b..cdb1521 100644 (file)
@@ -736,6 +736,12 @@ void CombinedUpdateRenderController::UpdateRenderThread()
       mNotificationTrigger.Trigger();
       LOG_UPDATE_RENDER("Notification Triggered");
     }
+  
+    if(uploadOnly && (keepUpdatingStatus & Dali::Integration::KeepUpdating::STAGE_KEEP_RENDERING))
+    {
+      // Render forcely if there exist some keep rendering required.
+      uploadOnly = false;
+    }
 
     // Optional logging of update/render status
     mUpdateStatusLogger.Log(keepUpdatingStatus);
@@ -830,6 +836,10 @@ void CombinedUpdateRenderController::UpdateRenderThread()
         }
       }
     }
+    else
+    {
+      DALI_LOG_RELEASE_INFO("DALI Rendering skip (upload only)\n");
+    }
 
     TRACE_UPDATE_RENDER_BEGIN("DALI_POST_RENDER");
     if(!uploadOnly)