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=743bc6c706e8c1dd0d8cd88c5d695071bef1dc10;hp=39ce202b8b0e24390351b7153ff60d2bdbea7429;hb=26e35c75bf4b09076549be404f70ae178299fdc3;hpb=18c250b7c2de9dba09bff61a6425c67f490e5d41 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 39ce202..743bc6c 100644 --- a/dali-toolkit/internal/text/rendering/atlas/atlas-glyph-manager.cpp +++ b/dali-toolkit/internal/text/rendering/atlas/atlas-glyph-manager.cpp @@ -69,7 +69,7 @@ AtlasGlyphManager::AtlasGlyphManager(Internal::AtlasGlyphManager *impl) } void AtlasGlyphManager::Add( const Text::GlyphInfo& glyph, - const BufferImage& bitmap, + const PixelData& bitmap, AtlasManager::AtlasSlot& slot ) { GetImplementation(*this).Add( glyph, bitmap, slot ); @@ -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 ) @@ -112,14 +106,9 @@ Pixel::Format AtlasGlyphManager::GetPixelFormat( uint32_t atlasId ) return GetImplementation(*this).GetPixelFormat( atlasId ); } -Material AtlasGlyphManager::GetMaterial( uint32_t atlasId ) const -{ - return GetImplementation(*this).GetMaterial( atlasId ); -} - -Image AtlasGlyphManager::GetImage( uint32_t atlasId ) const +TextureSet AtlasGlyphManager::GetTextures( uint32_t atlasId ) const { - return GetImplementation(*this).GetImage( atlasId ); + return GetImplementation(*this).GetTextures( atlasId ); } const Toolkit::AtlasGlyphManager::Metrics& AtlasGlyphManager::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