Revert "[3.0] Fixed lock up issue when EvasPlugin is resized" 49/97649/1
authordongsug.song <dongsug.song@samsung.com>
Tue, 15 Nov 2016 00:12:25 +0000 (09:12 +0900)
committerdongsug.song <dongsug.song@samsung.com>
Tue, 15 Nov 2016 00:12:29 +0000 (09:12 +0900)
This reverts commit d8fe31912a347a082cb1a419f25ead4d75f82bdb.

Change-Id: I3a765450ff2ff144ef199ecc0f0584b0ff6b3ea7

adaptors/tizen/native-render-surface-tizen.cpp

index 0c94474112cbe2e408a87752251ce01ac46ba1a9..3799b0e00a1bd0fe139f7a25c70f0215ed27658c 100644 (file)
@@ -186,11 +186,6 @@ void NativeRenderSurface::PostRender( EglInterface& egl, Integration::GlAbstract
   Internal::Adaptor::EglImplementation& eglImpl = static_cast<Internal::Adaptor::EglImplementation&>( egl );
   eglImpl.SwapBuffers();
 
-  if( mImpl->mThreadSynchronization )
-  {
-    mImpl->mThreadSynchronization->PostRenderStarted();
-  }
-
   {
     ConditionalWait::ScopedLock lock( mImpl->mTbmSurfaceCondition );
 
@@ -211,11 +206,6 @@ void NativeRenderSurface::PostRender( EglInterface& egl, Integration::GlAbstract
     // Tell the event-thread to render the tbm_surface
     mImpl->mRenderNotification->Trigger();
   }
-
-  if( mImpl->mThreadSynchronization )
-  {
-    mImpl->mThreadSynchronization->PostRenderWaitForCompletion();
-  }
 }
 
 void NativeRenderSurface::StopRender()