X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Frendering%2Fatlas%2Fatlas-glyph-manager.cpp;h=5a46ef5e0c887f9c2b25b54917ae424835d666a2;hb=refs%2Fchanges%2F65%2F49465%2F8;hp=d46ef180adf41690b090a6c60cd5456b405f0893;hpb=9db1f87a421a896c62580a733449486512315c9a;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/text/rendering/atlas/atlas-glyph-manager.cpp b/dali-toolkit/internal/text/rendering/atlas/atlas-glyph-manager.cpp index d46ef18..5a46ef5 100644 --- a/dali-toolkit/internal/text/rendering/atlas/atlas-glyph-manager.cpp +++ b/dali-toolkit/internal/text/rendering/atlas/atlas-glyph-manager.cpp @@ -19,10 +19,9 @@ #include // EXTERNAL INCLUDES -#include +#include // INTERNAL INCLUDES -#include #include namespace Dali @@ -78,30 +77,23 @@ void AtlasGlyphManager::Add( const Text::GlyphInfo& glyph, void AtlasGlyphManager::GenerateMeshData( uint32_t imageId, const Vector2& position, - MeshData& meshData ) + Toolkit::AtlasManager::Mesh2D& mesh ) { GetImplementation(*this).GenerateMeshData( imageId, position, - meshData ); + mesh ); } -void AtlasGlyphManager::StitchMesh( MeshData& first, - const MeshData& second ) +bool AtlasGlyphManager::IsCached( Text::FontId fontId, + Text::GlyphIndex index, + AtlasManager::AtlasSlot& slot ) { - GetImplementation(*this).StitchMesh( first, second ); + return GetImplementation(*this).IsCached( fontId, index, slot ); } -void AtlasGlyphManager::Cached( Text::FontId fontId, - Text::GlyphIndex index, - AtlasManager::AtlasSlot& slot ) +void AtlasGlyphManager::SetNewAtlasSize( uint32_t width, uint32_t height, uint32_t blockWidth, uint32_t blockHeight ) { - GetImplementation(*this).Cached( fontId, index, slot ); -} - -void AtlasGlyphManager::SetNewAtlasSize( const Vector2& size, - const Vector2& blockSize ) -{ - GetImplementation(*this).SetNewAtlasSize( size, blockSize ); + GetImplementation(*this).SetNewAtlasSize( width, height, blockWidth, blockHeight ); } Vector2 AtlasGlyphManager::GetAtlasSize( uint32_t atlasId ) @@ -109,14 +101,14 @@ Vector2 AtlasGlyphManager::GetAtlasSize( uint32_t atlasId ) return GetImplementation(*this).GetAtlasSize( atlasId ); } -void AtlasGlyphManager::Remove( uint32_t imageId ) +Pixel::Format AtlasGlyphManager::GetPixelFormat( uint32_t atlasId ) { - GetImplementation(*this).Remove( imageId ); + return GetImplementation(*this).GetPixelFormat( atlasId ); } -Pixel::Format AtlasGlyphManager::GetPixelFormat( uint32_t atlasId ) +Material AtlasGlyphManager::GetMaterial( uint32_t atlasId ) const { - return GetImplementation(*this).GetPixelFormat( atlasId ); + return GetImplementation(*this).GetMaterial( atlasId ); } const Toolkit::AtlasGlyphManager::Metrics& AtlasGlyphManager::GetMetrics() @@ -124,6 +116,11 @@ const Toolkit::AtlasGlyphManager::Metrics& AtlasGlyphManager::GetMetrics() return GetImplementation(*this).GetMetrics(); } +void AtlasGlyphManager::AdjustReferenceCount( Text::FontId fontId, Text::GlyphIndex index, int32_t delta ) +{ + GetImplementation(*this).AdjustReferenceCount( fontId, index, delta ); +} + } // namespace Toolkit } // namespace Dali