Merge "Sync UTC harness" into devel/master
[platform/core/uifw/dali-core.git] / dali / internal / common / core-impl.h
index 7313d26..5c21a44 100644 (file)
@@ -2,7 +2,7 @@
 #define DALI_INTERNAL_CORE_H
 
 /*
- * Copyright (c) 2021 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2022 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -198,6 +198,11 @@ public:
    */
   ObjectRegistry& GetObjectRegistry() const;
 
+  /**
+   * Log the capacity of DALi memory pools
+   */
+  void LogMemoryPools() const;
+
 public: // Implementation of EventThreadServices
   /**
    * @copydoc EventThreadServices::RegisterObject
@@ -358,8 +363,10 @@ private:
 
   Graphics::Controller& mGraphicsController;
 
-  bool mProcessingEvent : 1; ///< True during ProcessEvents()
-  bool mForceNextUpdate : 1; ///< True if the next rendering is really required.
+  bool mProcessingEvent : 1;           ///< True during ProcessEvents()
+  bool mForceNextUpdate : 1;           ///< True if the next rendering is really required.
+  bool mProcessorUnregistered : 1;     ///< True if the processor is unregistered during RunProcessors()
+  bool mPostProcessorUnregistered : 1; ///< True if the post-processor is unregistered during RunPostProcessors()
 
   friend class ThreadLocalStorage;
 };