X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Fdevel-api%2Fadaptor-framework%2Fwindow-devel.cpp;h=f883ae8bde8784d39cb4ab13f5d773c41d50d06b;hb=66ebc91833b3a2da6ca84c24c08f078de2d893be;hp=c3c8c18840c00a06297c7f58cbf66f32701550e2;hpb=56085602bdee7f591588f962117338b8c5b94092;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git diff --git a/dali/devel-api/adaptor-framework/window-devel.cpp b/dali/devel-api/adaptor-framework/window-devel.cpp index c3c8c18..f883ae8 100644 --- a/dali/devel-api/adaptor-framework/window-devel.cpp +++ b/dali/devel-api/adaptor-framework/window-devel.cpp @@ -55,7 +55,7 @@ Window New(Any surface, PositionSize windowPosition, const std::string& name, co if (isAdaptorAvailable) { Dali::Adaptor& adaptor = Internal::Adaptor::Adaptor::Get(); - Internal::Adaptor::Adaptor::GetImplementation(adaptor).AddWindow(sceneHolder, name, className, isTransparent); + Internal::Adaptor::Adaptor::GetImplementation(adaptor).AddWindow(sceneHolder); } newWindow = Window(window); } @@ -137,11 +137,6 @@ int32_t GetNativeId( Window window ) return GetImplementation( window ).GetNativeId(); } -void SetDamagedAreas(Window window, std::vector>& areas) -{ - GetImplementation(window).SetDamagedAreas(areas); -} - void AddFrameRenderedCallback( Window window, std::unique_ptr< CallbackBase > callback, int32_t frameId ) { GetImplementation( window ).AddFrameRenderedCallback( std::move( callback ), frameId );