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=abcd391fd492dc54263bbc7d4b3e249667e5874d;hp=7e1facd23bb12097062fb8cc70684e9553cd7dc9;hb=a2de9cf491172cd5da9dc9ed60b17683dab6d7bc;hpb=da7bba2130b0b15f9d93d63b2404b8888af2c85b 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 7e1facd..abcd391 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 @@ -85,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 ) @@ -113,14 +106,14 @@ Pixel::Format AtlasGlyphManager::GetPixelFormat( uint32_t atlasId ) return GetImplementation(*this).GetPixelFormat( atlasId ); } -Material AtlasGlyphManager::GetMaterial( uint32_t atlasId ) const +TextureSet AtlasGlyphManager::GetTextures( uint32_t atlasId ) const { - return GetImplementation(*this).GetMaterial( atlasId ); + return GetImplementation(*this).GetTextures( atlasId ); } -Sampler AtlasGlyphManager::GetSampler( uint32_t atlasId ) const +Shader AtlasGlyphManager::GetShader( uint32_t atlasId ) const { - return GetImplementation(*this).GetSampler( atlasId ); + return GetImplementation(*this).GetShader( atlasId ); } const Toolkit::AtlasGlyphManager::Metrics& AtlasGlyphManager::GetMetrics() @@ -128,19 +121,9 @@ const Toolkit::AtlasGlyphManager::Metrics& AtlasGlyphManager::GetMetrics() return GetImplementation(*this).GetMetrics(); } -void AtlasGlyphManager::AdjustReferenceCount( Text::FontId fontId, uint32_t imageId, int32_t delta ) -{ - GetImplementation(*this).AdjustReferenceCount( fontId, imageId, delta ); -} - -Shader AtlasGlyphManager::GetEffectBufferShader() const -{ - return GetImplementation(*this).GetEffectBufferShader(); -} - -Shader AtlasGlyphManager::GetGlyphShadowShader() const +void AtlasGlyphManager::AdjustReferenceCount( Text::FontId fontId, Text::GlyphIndex index, int32_t delta ) { - return GetImplementation(*this).GetGlyphShadowShader(); + GetImplementation(*this).AdjustReferenceCount( fontId, index, delta ); } } // namespace Toolkit