Revert "[Tizen] Add log to check when wl_egl_window_destroy is called" 69/178469/1
authorHeeyong Song <heeyong.song@samsung.com>
Thu, 10 May 2018 05:04:23 +0000 (14:04 +0900)
committerHeeyong Song <heeyong.song@samsung.com>
Thu, 10 May 2018 05:04:28 +0000 (14:04 +0900)
This reverts commit fc1122490e760336f8c0e21d15fddc9e9d317f12.

Change-Id: I3592459320078c07b4bd01453e0b1e5562bb36e4

dali/internal/window-system/tizen-wayland/ecore-wl/window-render-surface-ecore-wl.cpp
dali/internal/window-system/tizen-wayland/ecore-wl2/window-render-surface-ecore-wl2.cpp

index d0c3a1d..9e3578d 100644 (file)
@@ -70,7 +70,6 @@ WindowRenderSurface::~WindowRenderSurface()
 {
   if( mEglWindow != NULL )
   {
-    DALI_LOG_RELEASE_INFO("Egl window is destroyed by WindowRenderSurface Destructor\n");
     wl_egl_window_destroy(mEglWindow);
     mEglWindow = NULL;
   }
@@ -201,7 +200,6 @@ void WindowRenderSurface::DestroyEglSurface( EglInterface& eglIf )
 
   if( mEglWindow != NULL )
   {
-    DALI_LOG_RELEASE_INFO("Egl window is destroyed by WindowRenderSurface::DestroyEglSurface()\n");
     wl_egl_window_destroy(mEglWindow);
     mEglWindow = NULL;
   }
@@ -213,7 +211,6 @@ bool WindowRenderSurface::ReplaceEGLSurface( EglInterface& egl )
 
   if( mEglWindow != NULL )
   {
-    DALI_LOG_RELEASE_INFO("Egl window is destroyed by WindowRenderSurface::ReplaceEGLSurface()\n");
     wl_egl_window_destroy(mEglWindow);
     mEglWindow = NULL;
   }
index 7e73f07..0f57675 100644 (file)
@@ -71,7 +71,6 @@ WindowRenderSurface::~WindowRenderSurface()
 {
   if( mEglWindow != NULL )
   {
-    DALI_LOG_RELEASE_INFO("Egl window is destroyed by wl2 WindowRenderSurface Destructor\n");
     wl_egl_window_destroy(mEglWindow);
     mEglWindow = NULL;
   }
@@ -202,7 +201,6 @@ void WindowRenderSurface::DestroyEglSurface( EglInterface& eglIf )
 
   if( mEglWindow != NULL )
   {
-    DALI_LOG_RELEASE_INFO("Egl window is destroyed by wl2 WindowRenderSurface::DestroyEglSurface()\n");
     wl_egl_window_destroy(mEglWindow);
     mEglWindow = NULL;
   }
@@ -214,7 +212,6 @@ bool WindowRenderSurface::ReplaceEGLSurface( EglInterface& egl )
 
   if( mEglWindow != NULL )
   {
-    DALI_LOG_RELEASE_INFO("Egl window is destroyed by wl2 WindowRenderSurface::ReplaceEGLSurface()\n");
     wl_egl_window_destroy(mEglWindow);
     mEglWindow = NULL;
   }