Revert "[Tizen] Restore Uploaded signal for BufferImage and ResourceImage"
authorSeungho, Baek <sbsh.baek@samsung.com>
Mon, 1 Oct 2018 02:02:32 +0000 (11:02 +0900)
committerSeungho, Baek <sbsh.baek@samsung.com>
Mon, 1 Oct 2018 02:02:32 +0000 (11:02 +0900)
This reverts commit cb97d1fa5f8d0c0e49bd3a34e78be1670d6550e7.

dali/internal/event/images/buffer-image-impl.cpp
dali/internal/event/images/resource-image-impl.cpp

index c34dede..7879f06 100644 (file)
@@ -170,8 +170,6 @@ void BufferImage::UploadArea( const RectArea& area )
   }
   PixelDataPtr pixelData = PixelData::New( buffer, bufferSize, mBufferWidth, bufferHeight, mPixelFormat, Dali::PixelData::FREE );
   mTexture->Upload( pixelData, 0u, 0u, area.x, area.y, mBufferWidth, bufferHeight );
-
-  UploadedSignal().Emit( Dali::Image( this ) );
 }
 
 void BufferImage::UpdateBufferArea( PixelBuffer* src, PixelBuffer* dest, const RectArea& area )
index ea72dcb..dc116cc 100644 (file)
@@ -186,7 +186,6 @@ void ResourceImage::Reload()
     mLoadingState = Dali::ResourceLoadingFailed;
   }
 
-  UploadedSignal().Emit( Dali::Image( this ) );
   mLoadingFinished.Emit( Dali::ResourceImage( this ) );
 }