[Tizen] Do not skip rendering if update required keep rendering accepted/tizen/unified/20240228.170346 accepted/tizen/unified/x/20240304.072614 accepted/tizen/unified/x/20240304.072831
authorSeoyeon Kim <seoyeon2.kim@samsung.com>
Tue, 27 Feb 2024 07:08:53 +0000 (16:08 +0900)
committerSeoyeon Kim <seoyeon2.kim@samsung.com>
Tue, 27 Feb 2024 07:08:55 +0000 (16:08 +0900)
This reverts commit e357a3a1dcc8cde244b8ad31337175f5d1dbeef0.

Change-Id: I8627ddb97c981deab20248c5be0bf115dd45948f

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)