Synchronize the window removal between main thread and render thread
[platform/core/uifw/dali-adaptor.git] / dali / internal / system / common / thread-controller.cpp
index 3cffd54..ac7e49e 100644 (file)
@@ -85,11 +85,16 @@ void ThreadController::RequestUpdateOnce()
   mThreadControllerInterface->RequestUpdateOnce();
 }
 
-void ThreadController::ReplaceSurface( RenderSurface* newSurface )
+void ThreadController::ReplaceSurface( Dali::RenderSurfaceInterface* newSurface )
 {
   mThreadControllerInterface->ReplaceSurface( newSurface );
 }
 
+void ThreadController::DeleteSurface( Dali::RenderSurfaceInterface* surface )
+{
+  mThreadControllerInterface->DeleteSurface( surface );
+}
+
 void ThreadController::ResizeSurface()
 {
   mThreadControllerInterface->ResizeSurface();