X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Frendering%2Fatlas%2Fatlas-glyph-manager.cpp;h=743bc6c706e8c1dd0d8cd88c5d695071bef1dc10;hb=e8983d597547efef7f2220c07db4d55028c02bd6;hp=0438314223520aa22ed94103372aadd757cc6611;hpb=65d9c5975d6822a58e0b5a11b88ace6c0a42b2a5;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 0438314..743bc6c 100644 --- a/dali-toolkit/internal/text/rendering/atlas/atlas-glyph-manager.cpp +++ b/dali-toolkit/internal/text/rendering/atlas/atlas-glyph-manager.cpp @@ -22,7 +22,6 @@ #include // INTERNAL INCLUDES -#include #include namespace Dali @@ -69,34 +68,27 @@ AtlasGlyphManager::AtlasGlyphManager(Internal::AtlasGlyphManager *impl) { } -void AtlasGlyphManager::Add( Text::FontId fontId, - const Text::GlyphInfo& glyph, - const BufferImage& bitmap, +void AtlasGlyphManager::Add( const Text::GlyphInfo& glyph, + const PixelData& bitmap, AtlasManager::AtlasSlot& slot ) { - GetImplementation(*this).Add( fontId, glyph, bitmap, slot ); + GetImplementation(*this).Add( glyph, 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, + AtlasManager::AtlasSlot& slot ) { - GetImplementation(*this).StitchMesh( first, second ); -} - -bool AtlasGlyphManager::Cached( Text::FontId fontId, - Text::GlyphIndex index, - AtlasManager::AtlasSlot& slot ) -{ - return GetImplementation(*this).Cached( fontId, index, slot ); + return GetImplementation(*this).IsCached( fontId, index, slot ); } void AtlasGlyphManager::SetNewAtlasSize( uint32_t width, uint32_t height, uint32_t blockWidth, uint32_t blockHeight ) @@ -114,14 +106,19 @@ Pixel::Format AtlasGlyphManager::GetPixelFormat( uint32_t atlasId ) return GetImplementation(*this).GetPixelFormat( atlasId ); } +TextureSet AtlasGlyphManager::GetTextures( uint32_t atlasId ) const +{ + return GetImplementation(*this).GetTextures( atlasId ); +} + const Toolkit::AtlasGlyphManager::Metrics& AtlasGlyphManager::GetMetrics() { return GetImplementation(*this).GetMetrics(); } -void AtlasGlyphManager::AdjustReferenceCount( Text::FontId fontId, uint32_t imageId, int32_t delta ) +void AtlasGlyphManager::AdjustReferenceCount( Text::FontId fontId, Text::GlyphIndex index, int32_t delta ) { - GetImplementation(*this).AdjustReferenceCount( fontId, imageId, delta ); + GetImplementation(*this).AdjustReferenceCount( fontId, index, delta ); } } // namespace Toolkit