[Tizen] Do not skip rendering if update required keep rendering accepted/tizen/unified/20240105.012934 accepted/tizen/unified/riscv/20240105.060223
authorHosang Kim <hosang12.kim@samsung.com>
Tue, 2 Jan 2024 06:50:53 +0000 (15:50 +0900)
committerHosang Kim <hosang12.kim@samsung.com>
Tue, 2 Jan 2024 06:50:53 +0000 (15:50 +0900)
This reverts commit f710079c5eada34365f6ad74700a78adcdefa8a1.

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)