Revert "[Tizen] Support Client Rotation and Screen Rotation"
[platform/core/uifw/dali-adaptor.git] / dali / internal / adaptor / common / adaptor-impl.cpp
index 345bacf..a4ab857 100755 (executable)
@@ -349,7 +349,7 @@ void Adaptor::Start()
   fontClient.SetDpi( dpiHor, dpiVer );
 
   // Tell the core the size of the surface just before we start the render-thread
-  mCore->SurfaceResized( defaultWindow->GetSurface(), false );
+  mCore->SurfaceResized( defaultWindow->GetSurface() );
 
   // Initialize the thread controller
   mThreadController->Initialize();
@@ -506,7 +506,7 @@ void Adaptor::ReplaceSurface( Dali::Integration::SceneHolder window, Dali::Rende
     if( windowPtr == windowImpl ) // the window is not deleted
     {
       // Let the core know the surface size has changed
-      mCore->SurfaceResized( &newSurface, false );
+      mCore->SurfaceResized( &newSurface );
 
       mResizedSignal.Emit( mAdaptor );
 
@@ -917,10 +917,10 @@ void Adaptor::OnDamaged( const DamageArea& area )
   RequestUpdate( false );
 }
 
-void Adaptor::SurfaceResizePrepare( Dali::RenderSurfaceInterface* surface, SurfaceSize surfaceSize, bool forceUpdate )
+void Adaptor::SurfaceResizePrepare( Dali::RenderSurfaceInterface* surface, SurfaceSize surfaceSize )
 {
   // Let the core know the surface size has changed
-  mCore->SurfaceResized( surface, forceUpdate );
+  mCore->SurfaceResized( surface );
 
   mResizedSignal.Emit( mAdaptor );
 }