[Tizen] Do not skip rendering if update required keep rendering accepted/tizen_unified_riscv accepted/tizen/unified/20240124.163247 accepted/tizen/unified/riscv/20240128.235648 accepted/tizen/unified/x/20240205.064157
authorBowon Ryu <bowon.ryu@samsung.com>
Wed, 24 Jan 2024 05:39:52 +0000 (14:39 +0900)
committerBowon Ryu <bowon.ryu@samsung.com>
Wed, 24 Jan 2024 05:39:52 +0000 (14:39 +0900)
This reverts commit 6d4e9e87b241ce67a47f5651b5ccc762a532c247.

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

index 48b7f25..c19103c 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)