[Tizen] Add log for rendering in the paused state 45/226245/1
authorHeeyong Song <heeyong.song@samsung.com>
Fri, 28 Feb 2020 03:30:48 +0000 (12:30 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Fri, 28 Feb 2020 06:25:52 +0000 (15:25 +0900)
Change-Id: I09d81ec6830f9e7034a17af32939b281354f4f2d

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

index 798faf1..804770f 100644 (file)
@@ -802,6 +802,12 @@ bool CombinedUpdateRenderController::UpdateRenderReady( bool& useElapsedTime, bo
     --mUpdateRenderRunCount;
   }
 
+  if( mUpdateRenderRunCount != CONTINUOUS )
+  {
+    DALI_LOG_RELEASE_INFO( "CombinedUpdateRenderController::UpdateRenderReady: %d, %d, %d, %d, %d\n",
+                           mUpdateRenderRunCount, mUpdateRenderThreadCanSleep, updateRequired, mPendingRequestUpdate, mSurfaceResized );
+  }
+
   // Keep the update-render thread alive if this thread is NOT to be destroyed
   return ! mDestroyUpdateRenderThread;
 }