From: Daekwang Ryu Date: Tue, 24 Apr 2018 06:37:28 +0000 (+0900) Subject: Revert "[Tizen] Add log to check when wl_egl_window_destroy is called" X-Git-Tag: accepted/tizen/unified/20180426.062511~17 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git;a=commitdiff_plain;h=3736803ff998bdf40ed314df2385c4636ee05992 Revert "[Tizen] Add log to check when wl_egl_window_destroy is called" This reverts commit 8f405d7480c9770ffba364449be2b5e706ff7c54. Change-Id: Ifa74af8c9373630b4479bc5ecbb9d07604496115 --- diff --git a/dali/internal/window-system/tizen-wayland/ecore-wl/window-render-surface-ecore-wl.cpp b/dali/internal/window-system/tizen-wayland/ecore-wl/window-render-surface-ecore-wl.cpp index d0c3a1d..9e3578d 100644 --- a/dali/internal/window-system/tizen-wayland/ecore-wl/window-render-surface-ecore-wl.cpp +++ b/dali/internal/window-system/tizen-wayland/ecore-wl/window-render-surface-ecore-wl.cpp @@ -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; } diff --git a/dali/internal/window-system/tizen-wayland/ecore-wl2/window-render-surface-ecore-wl2.cpp b/dali/internal/window-system/tizen-wayland/ecore-wl2/window-render-surface-ecore-wl2.cpp index 7e73f07..0f57675 100644 --- a/dali/internal/window-system/tizen-wayland/ecore-wl2/window-render-surface-ecore-wl2.cpp +++ b/dali/internal/window-system/tizen-wayland/ecore-wl2/window-render-surface-ecore-wl2.cpp @@ -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; }