[Tizen] Support Client Rotation and Screen Rotation
[platform/core/uifw/dali-core.git] / dali / integration-api / core.cpp
index b14df7c..0d265f6 100644 (file)
@@ -38,7 +38,6 @@ Core* Core::New( RenderController& renderController,
                  PlatformAbstraction& platformAbstraction,
                  GlAbstraction& glAbstraction,
                  GlSyncAbstraction& glSyncAbstraction,
-                 GestureManager& gestureManager,
                  ResourcePolicy::DataRetention policy,
                  RenderToFrameBuffer renderToFboEnabled,
                  DepthBufferAvailable depthBufferAvailable,
@@ -49,7 +48,6 @@ Core* Core::New( RenderController& renderController,
                                         platformAbstraction,
                                         glAbstraction,
                                         glSyncAbstraction,
-                                        gestureManager,
                                         policy,
                                         renderToFboEnabled,
                                         depthBufferAvailable,
@@ -88,9 +86,14 @@ void Core::RecoverFromContextLoss()
   mImpl->RecoverFromContextLoss();
 }
 
-void Core::SurfaceResized( Integration::RenderSurface* surface )
+void Core::SurfaceResized( Integration::RenderSurface* surface, bool forceUpdate )
 {
-  mImpl->SurfaceResized(surface);
+  mImpl->SurfaceResized(surface, forceUpdate);
+}
+
+void Core::SurfaceDeleted( Integration::RenderSurface* surface )
+{
+  mImpl->SurfaceDeleted(surface);
 }
 
 void Core::SceneCreated()