X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Frendering%2Fatlas%2Fatlas-glyph-manager.cpp;h=a3059fe450e8db8be4099ba110ffc80f8154d988;hb=343471025909b11198158c8af1056aa6361f897b;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..a3059fe 100644 --- a/dali-toolkit/internal/text/rendering/atlas/atlas-glyph-manager.cpp +++ b/dali-toolkit/internal/text/rendering/atlas/atlas-glyph-manager.cpp @@ -1,5 +1,5 @@ - /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. +/* + * Copyright (c) 2021 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -19,18 +19,15 @@ #include // EXTERNAL INCLUDES -#include +#include // INTERNAL INCLUDES -#include #include namespace Dali { - namespace Toolkit { - AtlasGlyphManager::AtlasGlyphManager() { } @@ -44,8 +41,8 @@ AtlasGlyphManager AtlasGlyphManager::Get() AtlasGlyphManager manager; // Check whether the AtlasGlyphManager is already created - SingletonService singletonService( SingletonService::Get() ); - if ( singletonService ) + SingletonService singletonService(SingletonService::Get()); + if(singletonService) { Dali::BaseHandle handle = singletonService.GetSingleton(typeid(AtlasGlyphManager)); if(handle) @@ -64,63 +61,64 @@ AtlasGlyphManager AtlasGlyphManager::Get() return manager; } -AtlasGlyphManager::AtlasGlyphManager(Internal::AtlasGlyphManager *impl) - : BaseHandle(impl) +AtlasGlyphManager::AtlasGlyphManager(Internal::AtlasGlyphManager* impl) +: BaseHandle(impl) { } -void AtlasGlyphManager::Add( const Text::GlyphInfo& glyph, - const BufferImage& bitmap, - AtlasManager::AtlasSlot& slot ) +void AtlasGlyphManager::Add(const Text::GlyphInfo& glyph, + const GlyphStyle& style, + const PixelData& bitmap, + AtlasManager::AtlasSlot& slot) { - GetImplementation(*this).Add( glyph, bitmap, slot ); + GetImplementation(*this).Add(glyph, style, bitmap, slot); } -void AtlasGlyphManager::GenerateMeshData( uint32_t imageId, - const Vector2& position, - MeshData& meshData ) +void AtlasGlyphManager::GenerateMeshData(uint32_t imageId, + const Vector2& position, + Toolkit::AtlasManager::Mesh2D& mesh) { - GetImplementation(*this).GenerateMeshData( imageId, - position, - meshData ); + GetImplementation(*this).GenerateMeshData(imageId, + position, + mesh); } -void AtlasGlyphManager::StitchMesh( MeshData& first, - const MeshData& second ) +bool AtlasGlyphManager::IsCached(Text::FontId fontId, + Text::GlyphIndex index, + const GlyphStyle& style, + AtlasManager::AtlasSlot& slot) { - GetImplementation(*this).StitchMesh( first, second ); + return GetImplementation(*this).IsCached(fontId, index, style, slot); } -void AtlasGlyphManager::Cached( Text::FontId fontId, - Text::GlyphIndex index, - AtlasManager::AtlasSlot& slot ) +void AtlasGlyphManager::SetNewAtlasSize(uint32_t width, uint32_t height, uint32_t blockWidth, uint32_t blockHeight) { - GetImplementation(*this).Cached( fontId, index, slot ); + GetImplementation(*this).SetNewAtlasSize(width, height, blockWidth, blockHeight); } -void AtlasGlyphManager::SetNewAtlasSize( uint32_t width, uint32_t height, uint32_t blockWidth, uint32_t blockHeight ) +Vector2 AtlasGlyphManager::GetAtlasSize(uint32_t atlasId) { - GetImplementation(*this).SetNewAtlasSize( width, height, blockWidth, blockHeight ); + return GetImplementation(*this).GetAtlasSize(atlasId); } -Vector2 AtlasGlyphManager::GetAtlasSize( uint32_t atlasId ) +Pixel::Format AtlasGlyphManager::GetPixelFormat(uint32_t atlasId) { - return GetImplementation(*this).GetAtlasSize( atlasId ); + return GetImplementation(*this).GetPixelFormat(atlasId); } -void AtlasGlyphManager::Remove( uint32_t imageId ) +TextureSet AtlasGlyphManager::GetTextures(uint32_t atlasId) const { - GetImplementation(*this).Remove( imageId ); + return GetImplementation(*this).GetTextures(atlasId); } -Pixel::Format AtlasGlyphManager::GetPixelFormat( uint32_t atlasId ) +const Toolkit::AtlasGlyphManager::Metrics& AtlasGlyphManager::GetMetrics() { - return GetImplementation(*this).GetPixelFormat( atlasId ); + return GetImplementation(*this).GetMetrics(); } -const Toolkit::AtlasGlyphManager::Metrics& AtlasGlyphManager::GetMetrics() +void AtlasGlyphManager::AdjustReferenceCount(Text::FontId fontId, Text::GlyphIndex index, const GlyphStyle& style, int32_t delta) { - return GetImplementation(*this).GetMetrics(); + GetImplementation(*this).AdjustReferenceCount(fontId, index, style, delta); } } // namespace Toolkit