Revert "[Tizen] Adds transition effect"
authorSunghyun Kim <scholb.kim@samsung.com>
Mon, 26 Apr 2021 06:39:06 +0000 (15:39 +0900)
committerSunghyun Kim <scholb.kim@samsung.com>
Mon, 26 Apr 2021 06:39:06 +0000 (15:39 +0900)
This reverts commit 238fa41a84a348edda02d391491ddf56206e2a6f.

dali/integration-api/adaptor-framework/adaptor.h
dali/internal/adaptor/common/adaptor-impl.cpp
dali/internal/adaptor/common/adaptor-impl.h
dali/internal/adaptor/common/adaptor.cpp

index 9bcb8c6..43b4913 100644 (file)
@@ -2,7 +2,7 @@
 #define DALI_INTEGRATION_ADAPTOR_H
 
 /*
- * Copyright (c) 2021 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2020 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.
@@ -406,17 +406,15 @@ public:
   /**
    * @brief Register a processor implementing the Integration::Processor interface with dali-core.
    * @param[in] processor the Processor to register
-   * @param[in] postProcessor set this processor required to be called after size negotiation. Default is false.
    * @note using this api does not maintain the processor's lifecycle, must be done elsewhere.
    */
-  void RegisterProcessor(Integration::Processor& processor, bool postProcessor = false);
+  void RegisterProcessor(Integration::Processor& processor);
 
   /**
    * @brief Unregister a previously registered processor from dali-core.
    * @param[in] processor the Processor to unregister
-   * @param[in] postProcessor True if the processor to be unregister is for post processor.
    */
-  void UnregisterProcessor(Integration::Processor& processor, bool postProcessor = false);
+  void UnregisterProcessor(Integration::Processor& processor);
 
   /**
    * @brief Get the list of windows created.
index c849f93..2767044 100644 (file)
@@ -1106,14 +1106,14 @@ const LogFactoryInterface& Adaptor::GetLogFactory()
   return *mEnvironmentOptions;
 }
 
-void Adaptor::RegisterProcessor(Integration::Processor& processor, bool postProcessor)
+void Adaptor::RegisterProcessor(Integration::Processor& processor)
 {
-  GetCore().RegisterProcessor(processor, postProcessor);
+  GetCore().RegisterProcessor(processor);
 }
 
-void Adaptor::UnregisterProcessor(Integration::Processor& processor, bool postProcessor)
+void Adaptor::UnregisterProcessor(Integration::Processor& processor)
 {
-  GetCore().UnregisterProcessor(processor, postProcessor);
+  GetCore().UnregisterProcessor(processor);
 }
 
 bool Adaptor::IsMultipleWindowSupported() const
index b69ad05..7992342 100644 (file)
@@ -442,12 +442,12 @@ public:
   /**
    * @copydoc Dali::Adaptor::RegisterProcessor
    */
-  void RegisterProcessor(Integration::Processor& processor, bool postProcessor);
+  void RegisterProcessor(Integration::Processor& processor);
 
   /**
    * @coydoc Dali::Adaptor::UnregisterProcessor
    */
-  void UnregisterProcessor(Integration::Processor& processor, bool postProcessor);
+  void UnregisterProcessor(Integration::Processor& processor);
 
   /**
    * Check MultipleWindow is supported
index d320604..31af12b 100644 (file)
@@ -230,14 +230,14 @@ const LogFactoryInterface& Adaptor::GetLogFactory()
   return mImpl->GetLogFactory();
 }
 
-void Adaptor::RegisterProcessor(Integration::Processor& processor, bool postProcessor)
+void Adaptor::RegisterProcessor(Integration::Processor& processor)
 {
-  mImpl->RegisterProcessor(processor, postProcessor);
+  mImpl->RegisterProcessor(processor);
 }
 
-void Adaptor::UnregisterProcessor(Integration::Processor& processor, bool postProcessor)
+void Adaptor::UnregisterProcessor(Integration::Processor& processor)
 {
-  mImpl->UnregisterProcessor(processor, postProcessor);
+  mImpl->UnregisterProcessor(processor);
 }
 
 Dali::WindowContainer Adaptor::GetWindows() const