From: taeyoon0.lee Date: Wed, 11 Oct 2017 08:25:28 +0000 (+0900) Subject: Revert "[4.0] Restore Uploaded signal for BufferImage and ResourceImage" X-Git-Tag: accepted/tizen/4.0/unified/20171012.230017~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;ds=sidebyside;h=bf0fc38794304b32d2bb7770e42d2e0dc82c4714;p=platform%2Fcore%2Fuifw%2Fdali-core.git Revert "[4.0] Restore Uploaded signal for BufferImage and ResourceImage" This reverts commit 45a28cb889a15c044232c25705129ff4193dc125. Change-Id: I00a648900baad2c497ff7943054139a0f62ba333 --- diff --git a/dali/internal/event/images/buffer-image-impl.cpp b/dali/internal/event/images/buffer-image-impl.cpp index c34dede..7879f06 100644 --- a/dali/internal/event/images/buffer-image-impl.cpp +++ b/dali/internal/event/images/buffer-image-impl.cpp @@ -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 ) diff --git a/dali/internal/event/images/resource-image-impl.cpp b/dali/internal/event/images/resource-image-impl.cpp index ea72dcb..dc116cc 100644 --- a/dali/internal/event/images/resource-image-impl.cpp +++ b/dali/internal/event/images/resource-image-impl.cpp @@ -186,7 +186,6 @@ void ResourceImage::Reload() mLoadingState = Dali::ResourceLoadingFailed; } - UploadedSignal().Emit( Dali::Image( this ) ); mLoadingFinished.Emit( Dali::ResourceImage( this ) ); }