X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Finternal%2Fadaptor%2Fcommon%2Fadaptor-impl.cpp;h=a4ab85759bb472afe08aa5aa40fd434c590738f2;hb=eec8bf0f012b76a127f148f2f77daf2f2ddf20ea;hp=345bacf672035f79ca9d2c89f0152780f18d9597;hpb=641c43874ce1a7ec9b554440bdd4637ee8efe828;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git diff --git a/dali/internal/adaptor/common/adaptor-impl.cpp b/dali/internal/adaptor/common/adaptor-impl.cpp index 345bacf..a4ab857 100755 --- a/dali/internal/adaptor/common/adaptor-impl.cpp +++ b/dali/internal/adaptor/common/adaptor-impl.cpp @@ -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 ); }