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=463a3e85105cb78c382641019c12cc212c6b379d;hp=0c6ab13d063f3a089e7f4ae6029902bdd0d3fbd1;hb=5b3cf0e6742934674bdf62bbe15af00e39eae566;hpb=2071317d301e9d5af326a3a2efcd2996263fbead 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 0c6ab13..463a3e8 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 @@ -91,11 +90,11 @@ void AtlasGlyphManager::StitchMesh( Toolkit::AtlasManager::Mesh2D& first, GetImplementation(*this).StitchMesh( first, second ); } -void AtlasGlyphManager::Cached( Text::FontId fontId, +bool AtlasGlyphManager::Cached( Text::FontId fontId, Text::GlyphIndex index, AtlasManager::AtlasSlot& slot ) { - GetImplementation(*this).Cached( fontId, index, slot ); + return GetImplementation(*this).Cached( fontId, index, slot ); } void AtlasGlyphManager::SetNewAtlasSize( uint32_t width, uint32_t height, uint32_t blockWidth, uint32_t blockHeight ) @@ -108,11 +107,6 @@ Vector2 AtlasGlyphManager::GetAtlasSize( uint32_t atlasId ) return GetImplementation(*this).GetAtlasSize( atlasId ); } -void AtlasGlyphManager::Remove( uint32_t imageId ) -{ - GetImplementation(*this).Remove( imageId ); -} - Pixel::Format AtlasGlyphManager::GetPixelFormat( uint32_t atlasId ) { return GetImplementation(*this).GetPixelFormat( atlasId ); @@ -133,6 +127,20 @@ const Toolkit::AtlasGlyphManager::Metrics& AtlasGlyphManager::GetMetrics() return GetImplementation(*this).GetMetrics(); } +void AtlasGlyphManager::AdjustReferenceCount( Text::FontId fontId, Text::GlyphIndex index, int32_t delta ) +{ + GetImplementation(*this).AdjustReferenceCount( fontId, index, delta ); +} + +Shader AtlasGlyphManager::GetEffectBufferShader() const +{ + return GetImplementation(*this).GetEffectBufferShader(); +} + +Shader AtlasGlyphManager::GetGlyphShadowShader() const +{ + return GetImplementation(*this).GetGlyphShadowShader(); +} } // namespace Toolkit