[Tizen] Do not skip rendering if update required keep rendering accepted/tizen/unified/20240221.062924 accepted/tizen/unified/x/20240222.211122
authorWoochan Lee <wc0917.lee@samsung.com>
Tue, 20 Feb 2024 04:19:26 +0000 (13:19 +0900)
committerWoochan Lee <wc0917.lee@samsung.com>
Tue, 20 Feb 2024 04:19:26 +0000 (13:19 +0900)
This reverts commit ff8005e5da64f7143eb8ff92ef4f1b7de565e2d4.

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)