X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Frendering%2Fatlas%2Fatlas-glyph-manager.cpp;h=7e1facd23bb12097062fb8cc70684e9553cd7dc9;hb=68398f4bf6958cd60f12b930e240d0d75e9e7d29;hp=37f7ee1e32a1e8e5ec924944212c0d65f749d829;hpb=df5c192e17a7f8be8df32489111f5e6d09974680;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 37f7ee1..7e1facd 100644 --- a/dali-toolkit/internal/text/rendering/atlas/atlas-glyph-manager.cpp +++ b/dali-toolkit/internal/text/rendering/atlas/atlas-glyph-manager.cpp @@ -78,24 +78,24 @@ void AtlasGlyphManager::Add( const Text::GlyphInfo& glyph, 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 ) +void AtlasGlyphManager::StitchMesh( Toolkit::AtlasManager::Mesh2D& first, + const Toolkit::AtlasManager::Mesh2D& second ) { 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,14 +108,19 @@ Vector2 AtlasGlyphManager::GetAtlasSize( uint32_t atlasId ) return GetImplementation(*this).GetAtlasSize( atlasId ); } -void AtlasGlyphManager::Remove( uint32_t imageId ) +Pixel::Format AtlasGlyphManager::GetPixelFormat( uint32_t atlasId ) { - GetImplementation(*this).Remove( imageId ); + return GetImplementation(*this).GetPixelFormat( atlasId ); } -Pixel::Format AtlasGlyphManager::GetPixelFormat( uint32_t atlasId ) +Material AtlasGlyphManager::GetMaterial( uint32_t atlasId ) const { - return GetImplementation(*this).GetPixelFormat( atlasId ); + return GetImplementation(*this).GetMaterial( atlasId ); +} + +Sampler AtlasGlyphManager::GetSampler( uint32_t atlasId ) const +{ + return GetImplementation(*this).GetSampler( atlasId ); } const Toolkit::AtlasGlyphManager::Metrics& AtlasGlyphManager::GetMetrics() @@ -123,6 +128,21 @@ 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 +{ + return GetImplementation(*this).GetGlyphShadowShader(); +} + } // namespace Toolkit } // namespace Dali