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=a0a33727b8aa3ba5f32d4541f07718151f9574af;hp=463a3e85105cb78c382641019c12cc212c6b379d;hpb=5b3cf0e6742934674bdf62bbe15af00e39eae566;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 463a3e8..5a46ef5 100644 --- a/dali-toolkit/internal/text/rendering/atlas/atlas-glyph-manager.cpp +++ b/dali-toolkit/internal/text/rendering/atlas/atlas-glyph-manager.cpp @@ -84,17 +84,11 @@ void AtlasGlyphManager::GenerateMeshData( uint32_t imageId, mesh ); } -void AtlasGlyphManager::StitchMesh( Toolkit::AtlasManager::Mesh2D& first, - const Toolkit::AtlasManager::Mesh2D& 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 ) @@ -117,11 +111,6 @@ Material AtlasGlyphManager::GetMaterial( uint32_t atlasId ) const return GetImplementation(*this).GetMaterial( atlasId ); } -Sampler AtlasGlyphManager::GetSampler( uint32_t atlasId ) const -{ - return GetImplementation(*this).GetSampler( atlasId ); -} - const Toolkit::AtlasGlyphManager::Metrics& AtlasGlyphManager::GetMetrics() { return GetImplementation(*this).GetMetrics(); @@ -132,16 +121,6 @@ void AtlasGlyphManager::AdjustReferenceCount( Text::FontId fontId, Text::GlyphIn GetImplementation(*this).AdjustReferenceCount( fontId, index, delta ); } -Shader AtlasGlyphManager::GetEffectBufferShader() const -{ - return GetImplementation(*this).GetEffectBufferShader(); -} - -Shader AtlasGlyphManager::GetGlyphShadowShader() const -{ - return GetImplementation(*this).GetGlyphShadowShader(); -} - } // namespace Toolkit } // namespace Dali