X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-scene3d%2Finternal%2Fcommon%2Fenvironment-map-load-task.h;h=6ca315a3d273a037c7e3c04dc63a6a50c461d2b0;hb=HEAD;hp=0517cbd5895ea1ad2be9206d948e94407018d2ee;hpb=5feee171a62b20f7d7b8cd1bcfdf5abb79bdd524;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-scene3d/internal/common/environment-map-load-task.h b/dali-scene3d/internal/common/environment-map-load-task.h index 0517cbd..6ca315a 100644 --- a/dali-scene3d/internal/common/environment-map-load-task.h +++ b/dali-scene3d/internal/common/environment-map-load-task.h @@ -54,17 +54,6 @@ public: ~EnvironmentMapLoadTask(); /** - * Process the task - */ - void Process() override; - - /** - * Whether the task is ready to process. - * @return True if the task is ready to process. - */ - bool IsReady() override; - - /** * Whether the task has succeeded. * @return True if the task has succeeded. */ @@ -89,6 +78,25 @@ public: */ Dali::Scene3D::EnvironmentMapType GetEnvironmentMapType(); +public: // Implementation of AsyncTask + /** + * @copydoc Dali::AsyncTask::Process() + */ + void Process(); + + /** + * @copydoc Dali::AsyncTask::IsReady() + */ + bool IsReady(); + + /** + * @copydoc Dali::AsyncTask::GetTaskName() + */ + std::string_view GetTaskName() const override + { + return "EnvironmentMapLoadTask"; + } + private: // Undefined EnvironmentMapLoadTask(const EnvironmentMapLoadTask& task) = delete;