[Tizen] Do not skip rendering if update required keep rendering accepted/tizen/unified/20231228.165704 accepted/tizen/unified/riscv/20240103.054707
authorEunki, Hong <eunkiki.hong@samsung.com>
Wed, 27 Dec 2023 00:38:27 +0000 (09:38 +0900)
committersunghyun kim <scholb.kim@samsung.com>
Wed, 27 Dec 2023 09:39:54 +0000 (18:39 +0900)
Change-Id: I50e52c76bf32da6246eed081e6cc94b5d8ecb2a2
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
dali/internal/adaptor/common/combined-update-render-controller.cpp

index b9598cc..7373ed8 100644 (file)
@@ -733,6 +733,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);
@@ -827,6 +833,10 @@ void CombinedUpdateRenderController::UpdateRenderThread()
         }
       }
     }
+    else
+    {
+      DALI_LOG_RELEASE_INFO("DALI Rendering skip (upload only)\n");
+    }
 
     TRACE_UPDATE_RENDER_BEGIN("DALI_POST_RENDER");
     if(!uploadOnly)