X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Frendering%2Fatlas%2Fatlas-glyph-manager.cpp;h=bd6850d8c8244157ef8fd36aeb537ee59c7a288c;hp=9ca3773cfa3d504b0d825a36d73b8508ee74ae39;hb=ff0db3ef923086d96dc8c2eb8501607da9c3c21e;hpb=7132bfee764dc2c7c68feb8c9e9c4e81c9a7d883 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 9ca3773..bd6850d 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 @@ -70,48 +69,58 @@ AtlasGlyphManager::AtlasGlyphManager(Internal::AtlasGlyphManager *impl) } void AtlasGlyphManager::Add( const Text::GlyphInfo& glyph, - const BufferImage& bitmap, + const uint32_t outlineWidth, + const PixelData& bitmap, AtlasManager::AtlasSlot& slot ) { - GetImplementation(*this).Add( glyph, bitmap, slot ); + GetImplementation(*this).Add( glyph, outlineWidth, bitmap, slot ); } 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, + uint32_t outlineWidth, + AtlasManager::AtlasSlot& slot ) { - GetImplementation(*this).StitchMesh( first, second ); + return GetImplementation(*this).IsCached( fontId, index, outlineWidth, 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 ); + GetImplementation(*this).SetNewAtlasSize( width, height, blockWidth, blockHeight ); } -void AtlasGlyphManager::SetAtlasSize( const Vector2& size, - const Vector2& blockSize ) +Vector2 AtlasGlyphManager::GetAtlasSize( uint32_t atlasId ) { - GetImplementation(*this).SetAtlasSize( size, blockSize ); + 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 ) +TextureSet AtlasGlyphManager::GetTextures( uint32_t atlasId ) const { - return GetImplementation(*this).GetPixelFormat( atlasId ); + return GetImplementation(*this).GetTextures( atlasId ); +} + +const Toolkit::AtlasGlyphManager::Metrics& AtlasGlyphManager::GetMetrics() +{ + return GetImplementation(*this).GetMetrics(); +} + +void AtlasGlyphManager::AdjustReferenceCount( Text::FontId fontId, Text::GlyphIndex index, uint32_t outlineWidth, int32_t delta ) +{ + GetImplementation(*this).AdjustReferenceCount( fontId, index, outlineWidth, delta ); } } // namespace Toolkit