[Tizen] Do not skip rendering if update required keep rendering accepted/tizen/unified/20240116.155515 accepted/tizen/unified/riscv/20240117.041628
authorWonsik Jung <sidein@samsung.com>
Mon, 15 Jan 2024 07:27:22 +0000 (16:27 +0900)
committerWonsik Jung <sidein@samsung.com>
Mon, 15 Jan 2024 07:27:29 +0000 (16:27 +0900)
This reverts commit c9cf68098bf03219fae2cd35d3c5ecefafbbeef5.

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)