X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fimage-loader%2Fimage-atlas-impl.cpp;h=b69adbde0161fab27944d13cc5fbf09b5f14b443;hb=67ea1e508cc155651fcb79825ed02f3cad7a6c0e;hp=bdd2780db891c636c8a9d32521865625760445bf;hpb=1ff26466c5458cda1de2997cd4e27b014ff0275a;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/image-loader/image-atlas-impl.cpp b/dali-toolkit/internal/image-loader/image-atlas-impl.cpp index bdd2780..b69adbd 100644 --- a/dali-toolkit/internal/image-loader/image-atlas-impl.cpp +++ b/dali-toolkit/internal/image-loader/image-atlas-impl.cpp @@ -21,8 +21,7 @@ // EXTERNAL INCLUDES #include #include -#include -#include +#include #include namespace Dali @@ -33,6 +32,50 @@ namespace Toolkit namespace Internal { +typedef unsigned char PixelBuffer; + +Texture ImageAtlas::PackToAtlas( const std::vector& pixelData, Dali::Vector& textureRects ) +{ + // Record each block size + Dali::Vector blockSizes; + SizeType count = pixelData.size(); + for( SizeType index = 0; index < count; index++ ) + { + blockSizes.PushBack( ImageDimensions( pixelData[index].GetWidth(), pixelData[index].GetHeight() ) ); + } + + // Ask atlasPacker for packing position of each block + Dali::Vector packPositions; + ImageDimensions atlasSize = AtlasPacker::GroupPack( blockSizes, packPositions ); + + // Prepare for outout texture rect array + textureRects.Clear(); + textureRects.Resize( count ); + + // create the texture for uploading the multiple pixel data + Texture atlasTexture = Texture::New( Dali::TextureType::TEXTURE_2D, Pixel::RGBA8888, atlasSize.GetWidth(), atlasSize.GetHeight() ); + + float atlasWidth = static_cast( atlasTexture.GetWidth() ); + float atlasHeight = static_cast( atlasTexture.GetHeight() ); + int packPositionX, packPositionY; + // Upload the pixel data one by one to its packing position, and record the texture rects + for( SizeType index = 0; index < count; index++ ) + { + packPositionX = packPositions[index].GetX(); + packPositionY = packPositions[index].GetY(); + atlasTexture.Upload( pixelData[index], 0u, 0u, + packPositionX, packPositionY, + pixelData[index].GetWidth(), pixelData[index].GetHeight() ); + + // Apply the half pixel correction to avoid the color bleeding between neighbour blocks + textureRects[index].x = ( static_cast( packPositionX ) +0.5f ) / atlasWidth; // left + textureRects[index].y = ( static_cast( packPositionY ) +0.5f ) / atlasHeight; // right + textureRects[index].z = ( static_cast( packPositionX + pixelData[index].GetWidth() )-0.5f ) / atlasWidth; // right + textureRects[index].w = ( static_cast( packPositionY + pixelData[index].GetHeight() )-0.5f ) / atlasHeight;// bottom + } + + return atlasTexture; +} ImageAtlas::ImageAtlas( SizeType width, SizeType height, Pixel::Format pixelFormat ) : mAtlas( Texture::New( Dali::TextureType::TEXTURE_2D, pixelFormat, width, height ) ), @@ -83,7 +126,7 @@ float ImageAtlas::GetOccupancyRate() const void ImageAtlas::SetBrokenImage( const std::string& brokenImageUrl ) { - mBrokenImageSize = ResourceImage::GetImageSize( brokenImageUrl ); + mBrokenImageSize = Dali::GetClosestImageSize( brokenImageUrl ); if(mBrokenImageSize.GetWidth() > 0 && mBrokenImageSize.GetHeight() > 0 ) // check the url is valid { mBrokenImageUrl = brokenImageUrl; @@ -101,7 +144,7 @@ bool ImageAtlas::Upload( Vector4& textureRect, ImageDimensions zero; if( size == zero ) // image size not provided { - dimensions = ResourceImage::GetImageSize( url ); + dimensions = Dali::GetClosestImageSize( url ); if( dimensions == zero ) // Fail to read the image & broken image file exists { if( !mBrokenImageUrl.empty() ) @@ -218,10 +261,9 @@ void ImageAtlas::UploadToAtlas( uint32_t id, PixelData pixelData ) void ImageAtlas::UploadBrokenImage( const Rect& area ) { - BitmapLoader loader = BitmapLoader::New(mBrokenImageUrl, ImageDimensions( area.width, area.height ) ); - loader.Load(); - SizeType loadedWidth = loader.GetPixelData().GetWidth(); - SizeType loadedHeight = loader.GetPixelData().GetHeight(); + Devel::PixelBuffer brokenBuffer = LoadImageFromFile( mBrokenImageUrl, ImageDimensions( area.width, area.height ) ); + SizeType loadedWidth = brokenBuffer.GetWidth(); + SizeType loadedHeight = brokenBuffer.GetHeight(); bool needBackgroundClear = false; SizeType packX = area.x; @@ -241,16 +283,18 @@ void ImageAtlas::UploadBrokenImage( const Rect& area ) if( needBackgroundClear ) { SizeType size = area.width * area.height * Pixel::GetBytesPerPixel( mPixelFormat ); - PixelBuffer* buffer = new PixelBuffer [size]; - PixelData background = PixelData::New( buffer, size, area.width, area.height, mPixelFormat, PixelData::DELETE_ARRAY ); + Devel::PixelBuffer background = Devel::PixelBuffer::New( area.width, area.height, mPixelFormat ); + unsigned char* buffer = background.GetBuffer(); for( SizeType idx = 0; idx < size; idx++ ) { buffer[idx] = 0x00; } - mAtlas.Upload( background, 0u, 0u, area.x, area.y, area.width, area.height ); + PixelData pixelData = Devel::PixelBuffer::Convert( background ); + mAtlas.Upload( pixelData, 0u, 0u, area.x, area.y, area.width, area.height ); } - mAtlas.Upload( loader.GetPixelData(), 0u, 0u, packX, packY, loadedWidth, loadedHeight ); + PixelData brokenPixelData = Devel::PixelBuffer::Convert( brokenBuffer ); + mAtlas.Upload( brokenPixelData, 0u, 0u, packX, packY, loadedWidth, loadedHeight ); } } // namespace Internal