[Tizen] Do not skip rendering if update required keep rendering accepted/tizen/unified/20240404.164424 accepted/tizen/unified/x/20240408.053824
authorhuiyu.eun <huiyu.eun@samsung.com>
Wed, 3 Apr 2024 06:02:36 +0000 (15:02 +0900)
committerhuiyu.eun <huiyu.eun@samsung.com>
Wed, 3 Apr 2024 06:02:39 +0000 (15:02 +0900)
This reverts commit cb6cdbb5baf3af2f0061c4a489edd2f9e0f22ec5.

Change-Id: I90c678c9640eff49d428aacc3f3361b7173672ca

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

index 3697bc4..b544357 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)