From d5c2bc136de9d3f1ec22962fe7ee370aea3f7d3a Mon Sep 17 00:00:00 2001 From: "Eunki, Hong" Date: Tue, 19 Dec 2023 13:14:59 +0900 Subject: [PATCH] Print ProcessorController name for debug Change-Id: I8ff0c0f511bafa29d0a398795e0f354ccaa62896 Signed-off-by: Eunki, Hong --- .../common/processor-controller.h | 19 ++++++++++++++----- 1 file changed, 14 insertions(+), 5 deletions(-) diff --git a/dali-csharp-binder/common/processor-controller.h b/dali-csharp-binder/common/processor-controller.h index 9939e67b..03724561 100644 --- a/dali-csharp-binder/common/processor-controller.h +++ b/dali-csharp-binder/common/processor-controller.h @@ -53,11 +53,6 @@ public: */ void RegisterProcess(); - /** - * @copydoc Dali::Integration::Processor::Process() - */ - void Process(bool postProcessor) override; - /** * @brief Set the callback to be executed when dali-core calls the overriden Process() api. * @param[in] callback, function to be called @@ -89,6 +84,20 @@ public: */ void Awake(); +protected: // Implementation of Processor + /** + * @copydoc Dali::Integration::Processor::Process() + */ + void Process(bool postProcessor) override; + + /** + * @copydoc Dali::Integration::Processor::GetProcessorName() + */ + std::string_view GetProcessorName() const override + { + return "ProcessorController"; + } + private: ProcessorControllerProcessCallback mHandler; ///< PreProcessHandler before Relayout -- 2.34.1