Revert "[Tizen] Add New API of Scene with screen orientation"
authorSeoyeon Kim <seoyeon2.kim@samsung.com>
Wed, 16 Sep 2020 02:27:50 +0000 (11:27 +0900)
committerSeoyeon Kim <seoyeon2.kim@samsung.com>
Wed, 16 Sep 2020 02:27:50 +0000 (11:27 +0900)
This reverts commit 30b190fb96aed9cedd1111d043855546079b8f48.

dali/integration-api/scene.cpp
dali/integration-api/scene.h
dali/internal/event/common/scene-impl.cpp
dali/internal/event/common/scene-impl.h

index f580379..bd0398b 100644 (file)
@@ -35,12 +35,6 @@ Scene Scene::New( Size size )
   return Scene( internal.Get() );
 }
 
-Scene Scene::New( Size size, int orientation )
-{
-  Internal::ScenePtr internal = Internal::Scene::New( size, orientation );
-  return Scene( internal.Get() );
-}
-
 Scene Scene::DownCast( BaseHandle handle )
 {
   return Scene( dynamic_cast<Dali::Internal::Scene*>( handle.GetObjectPtr()) );
index 43b3015..a3dbab0 100755 (executable)
@@ -74,16 +74,6 @@ public:
   static Scene New( Size size );
 
   /**
-   * @brief Create an initialized Scene handle.
-   *
-   * @param[in] size The size of the set surface for this scene
-   * @param[in] orientation The orientation of the set surface for this scene
-   *
-   * @return a handle to a newly allocated Dali resource.
-   */
-  static Scene New( Size size, int orientation );
-
-  /**
    * @brief Downcast an Object handle to Scene handle.
    *
    * If handle points to a Scene object the downcast produces
index 208c1f7..45bda4d 100755 (executable)
@@ -48,17 +48,7 @@ ScenePtr Scene::New( Size size )
   ScenePtr scene = new Scene;
 
   // Second-phase construction
-  scene->Initialize( size, 0 );
-
-  return scene;
-}
-
-ScenePtr Scene::New( Size size, int orientation )
-{
-  ScenePtr scene = new Scene;
-
-  // Second-phase construction
-  scene->Initialize( size, orientation );
+  scene->Initialize( size );
 
   return scene;
 }
@@ -105,7 +95,7 @@ Scene::~Scene()
   // When this destructor is called, the scene has either already been removed from Core or Core has already been destroyed
 }
 
-void Scene::Initialize( Size size, int orientation )
+void Scene::Initialize( Size size )
 {
   ThreadLocalStorage* tls = ThreadLocalStorage::GetInternal();
 
@@ -141,7 +131,6 @@ void Scene::Initialize( Size size, int orientation )
   // Create the default render-task and ensure clear is enabled on it to show the background color
   RenderTaskPtr renderTask = mRenderTaskList->CreateTask( mRootLayer.Get(), mDefaultCamera.Get() );
   renderTask->SetClearEnabled(true);
-  mSurfaceOrientation = orientation;
 
   SurfaceResized( size.width, size.height, mSurfaceOrientation, false );
 
index 9d8c8fb..c5c2e4d 100755 (executable)
@@ -117,11 +117,6 @@ public:
   static ScenePtr New( Size size );
 
   /**
-   * @copydoc Dali::Integration::Scene::New
-   */
-  static ScenePtr New( Size size, int orientation );
-
-  /**
    * virtual destructor
    */
   virtual ~Scene();
@@ -345,9 +340,8 @@ private:
    * Second-phase constructor.
    *
    * @param[in] size The size of the set surface
-   * @param[in] orientation The orientation of the set surface for this scene
    */
-  void Initialize( Size size, int orientation );
+  void Initialize( Size size );
 
   // Undefined
   Scene(const Scene&) = delete;