[Tizen] Fix rendering issue by tbm_surface and eglSwapBuffers in native render surface 32/132632/1
authorminho.sun <minho.sun@samsung.com>
Wed, 7 Jun 2017 05:45:15 +0000 (14:45 +0900)
committerminho.sun <minho.sun@samsung.com>
Wed, 7 Jun 2017 05:45:18 +0000 (14:45 +0900)
This reverts commit 6b0c6bdc3a7c8feffdd9a0c1d9f280ca5f30a635.

Change-Id: I5ead8f684aa462077b477cc35bad8b1683c0c512

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

index 7af6a74..ab849e6 100644 (file)
@@ -170,11 +170,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();
-  }
-
   if( tbm_surface_queue_can_acquire( mImpl->mTbmQueue, 1 ) )
   {
     if( tbm_surface_queue_acquire( mImpl->mTbmQueue, &mImpl->mConsumeSurface ) != TBM_SURFACE_QUEUE_ERROR_NONE )
@@ -201,12 +196,6 @@ void NativeRenderSurface::PostRender( EglInterface& egl, Integration::GlAbstract
     mImpl->mRenderNotification->Trigger();
   }
 
-  if( mImpl->mThreadSynchronization )
-  {
-    // wait until the event-thread completed to use the tbm_surface
-    mImpl->mThreadSynchronization->PostRenderWaitForCompletion();
-  }
-
   // release the consumed surface after post render was completed
   ReleaseDrawable();
 }
@@ -258,7 +247,8 @@ void NativeRenderSurface::CreateNativeRenderable()
 
 void NativeRenderSurface::ReleaseLock()
 {
-  if( mImpl->mThreadSynchronization )
+  ConditionalWait::ScopedLock lock( mImpl->mTbmSurfaceCondition );
+  if( mImpl->mConsumeSurface )
   {
     mImpl->mThreadSynchronization->PostRenderComplete();
   }