[Tizen] Change PROFILE_TV to DALI_PROFILE_TV 88/303988/1
authorEunki, Hong <eunkiki.hong@samsung.com>
Tue, 9 Jan 2024 02:29:26 +0000 (11:29 +0900)
committerEunki, Hong <eunkiki.hong@samsung.com>
Tue, 9 Jan 2024 02:29:26 +0000 (11:29 +0900)
Change-Id: I89fb191d79248a5d263c9f2bd6d3892d3ef7d8ae
Signed-off-by: Eunki, Hong <eunkiki.hong@samsung.com>
dali/internal/adaptor/common/combined-update-render-controller.cpp
dali/internal/system/common/update-status-logger.cpp

index c1995c1..9e57bb7 100644 (file)
@@ -875,9 +875,9 @@ void CombinedUpdateRenderController::UpdateRenderThread()
     // or, only FrameUpdateCallback return true.
     // TODO : This logic only required for PROFILE_TV case. We should consider other profile in future.
     if((Integration::KeepUpdating::NOT_REQUESTED == keepUpdatingStatus
-#ifdef PROFILE_TV
+#ifdef DALI_PROFILE_TV
         || Integration::KeepUpdating::FRAME_UPDATE_CALLBACK == keepUpdatingStatus
-#endif
+#endif // DALI_PROFILE_TV
        )
        && !renderStatus.NeedsUpdate())
     {
index 925ede2..1dcc88a 100644 (file)
@@ -80,9 +80,9 @@ void UpdateStatusLogger::Log(unsigned int keepUpdatingStatus)
       if(keepUpdatingStatus & Integration::KeepUpdating::FRAME_UPDATE_CALLBACK)
       {
         oss += "<FrameUpdateCallback::return true";
-#ifdef PROFILE_TV
-        oss += "(NOTE : We don't keep update for this version)"
-#endif
+#ifdef DALI_PROFILE_TV
+        oss += "(NOTE : We don't keep update for this version of TV profile)"
+#endif // DALI_PROFILE_TV
         oss += "> ";
       }