X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Frendering%2Fatlas%2Fatlas-glyph-manager-impl.h;h=26bd6e30f1754b91a38d0911887fa60825f4e678;hb=343471025909b11198158c8af1056aa6361f897b;hp=5ba674018c95346710b1e9c78c4f767a5207c66e;hpb=522fdef5220890d655c8bb777b15574667a931b6;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/dali-toolkit/internal/text/rendering/atlas/atlas-glyph-manager-impl.h b/dali-toolkit/internal/text/rendering/atlas/atlas-glyph-manager-impl.h index 5ba6740..26bd6e3 100644 --- a/dali-toolkit/internal/text/rendering/atlas/atlas-glyph-manager-impl.h +++ b/dali-toolkit/internal/text/rendering/atlas/atlas-glyph-manager-impl.h @@ -1,8 +1,8 @@ -#ifndef __DALI_TOOLKIT_ATLAS_GLYPH_MANAGER_IMPL_H__ -#define __DALI_TOOLKIT_ATLAS_GLYPH_MANAGER_IMPL_H__ +#ifndef DALI_TOOLKIT_ATLAS_GLYPH_MANAGER_IMPL_H +#define DALI_TOOLKIT_ATLAS_GLYPH_MANAGER_IMPL_H /* - * 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. @@ -17,7 +17,6 @@ * limitations under the License. */ - // EXTERNAL INCLUDES #include #include @@ -27,38 +26,36 @@ namespace Dali { - namespace Toolkit { - class AtlasGlyphManager; } // namespace Toolkit namespace Toolkit { - namespace Internal { - class AtlasGlyphManager; typedef IntrusivePtr AtlasGlyphManagerPtr; class AtlasGlyphManager : public Dali::BaseObject { public: - struct GlyphRecordEntry { Text::GlyphIndex mIndex; - uint32_t mImageId; - int32_t mCount; + uint32_t mImageId; + int32_t mCount; + uint16_t mOutlineWidth; + bool isItalic : 1; + bool isBold : 1; }; struct FontGlyphRecord { - Text::FontId mFontId; - Vector< GlyphRecordEntry > mGlyphRecords; + Text::FontId mFontId; + Vector mGlyphRecords; }; /** @@ -69,102 +66,74 @@ public: /** * @copydoc Toolkit::AtlasGlyphManager::Add */ - void Add( const Text::GlyphInfo& glyph, - const BufferImage& bitmap, - Dali::Toolkit::AtlasManager::AtlasSlot& slot ); + void Add(const Text::GlyphInfo& glyph, + const Toolkit::AtlasGlyphManager::GlyphStyle& style, + const PixelData& bitmap, + Dali::Toolkit::AtlasManager::AtlasSlot& slot); /** * @copydoc Toolkit::AtlasGlyphManager::GenerateMeshData */ - void GenerateMeshData( uint32_t imageId, - const Vector2& position, - Toolkit::AtlasManager::Mesh2D& mesh ); + void GenerateMeshData(uint32_t imageId, + const Vector2& position, + Toolkit::AtlasManager::Mesh2D& mesh); /** - * @copydoc Toolkit::AtlasGlyphManager::StitchMesh + * @copydoc Toolkit::AtlasGlyphManager::IsCached */ - void StitchMesh( Toolkit::AtlasManager::Mesh2D& first, - const Toolkit::AtlasManager::Mesh2D& second ); - - /** - * @copydoc Toolkit::AtlasGlyphManager::Cached - */ - bool Cached( Text::FontId fontId, - Text::GlyphIndex index, - Dali::Toolkit::AtlasManager::AtlasSlot& slot ); + bool IsCached(Text::FontId fontId, + Text::GlyphIndex index, + const Toolkit::AtlasGlyphManager::GlyphStyle& style, + Dali::Toolkit::AtlasManager::AtlasSlot& slot); /** * @copydoc Toolkit::AtlasGlyphManager::GetAtlasSize */ - Vector2 GetAtlasSize( uint32_t atlasId ); + Vector2 GetAtlasSize(uint32_t atlasId); /** * @copydoc Toolkit::AtlasGlyphManager::SetNewAtlasSize */ - void SetNewAtlasSize( uint32_t width, uint32_t height, uint32_t blockWidth, uint32_t blockHeight ); + void SetNewAtlasSize(uint32_t width, uint32_t height, uint32_t blockWidth, uint32_t blockHeight); /** * @copydoc Toolkit::AtlasGlyphManager::GetPixelFormat */ - Pixel::Format GetPixelFormat( uint32_t atlasId ); + Pixel::Format GetPixelFormat(uint32_t atlasId); /** * @copydoc toolkit::AtlasGlyphManager::AdjustReferenceCount */ - void AdjustReferenceCount( Text::FontId fontId, Text::GlyphIndex index, int32_t delta ); - - /** - * @copydoc Toolkit::AtlasGlyphManager::GetMaterial - */ - Material GetMaterial( uint32_t atlasId ) const; + void AdjustReferenceCount(Text::FontId fontId, Text::GlyphIndex index, const Toolkit::AtlasGlyphManager::GlyphStyle& style, int32_t delta); /** - * @copydoc Toolkit::AtlasGlyphManager::GetMaterial + * @copydoc Toolkit::AtlasGlyphManager::GetTextures */ - Sampler GetSampler( uint32_t atlasId ) const; + TextureSet GetTextures(uint32_t atlasId) const; /** * @copydoc Toolkit::AtlasGlyphManager::GetMetrics */ const Toolkit::AtlasGlyphManager::Metrics& GetMetrics(); - /** - * @copydoc Toolkit::AtlasGlyphManager::GetEffectBufferShader - */ - Shader GetEffectBufferShader() const - { - return mEffectBufferShader; - } - - /** - * @copydoc Toolkit::AtlasGlyphManager::GetGlyphShadowShader - */ - Shader GetGlyphShadowShader() const - { - return mShadowShader; - } - protected: - /** * A reference counted object may only be deleted by calling Unreference() */ virtual ~AtlasGlyphManager(); private: - - Dali::Toolkit::AtlasManager mAtlasManager; ///> Atlas Manager created by GlyphManager - std::vector< FontGlyphRecord > mFontGlyphRecords; - Toolkit::AtlasGlyphManager::Metrics mMetrics; ///> Metrics to pass back on GlyphManager status - Shader mEffectBufferShader; ///> Shader used to render drop shadow buffer textures - Shader mShadowShader; ///> Shader used to render drop shadow into buffer + Dali::Toolkit::AtlasManager mAtlasManager; ///> Atlas Manager created by GlyphManager + std::vector mFontGlyphRecords; + Toolkit::AtlasGlyphManager::Metrics mMetrics; ///> Metrics to pass back on GlyphManager status + Sampler mSampler; }; } // namespace Internal inline const Internal::AtlasGlyphManager& GetImplementation(const Toolkit::AtlasGlyphManager& manager) { - DALI_ASSERT_ALWAYS( manager && "AtlasGlyphManager handle is empty" ); + DALI_ASSERT_ALWAYS(manager && "AtlasGlyphManager handle is empty"); const BaseObject& handle = manager.GetBaseObject(); @@ -173,7 +142,7 @@ inline const Internal::AtlasGlyphManager& GetImplementation(const Toolkit::Atlas inline Internal::AtlasGlyphManager& GetImplementation(Toolkit::AtlasGlyphManager& manager) { - DALI_ASSERT_ALWAYS( manager && "AtlasGlyphManager handle is empty" ); + DALI_ASSERT_ALWAYS(manager && "AtlasGlyphManager handle is empty"); BaseObject& handle = manager.GetBaseObject(); @@ -184,4 +153,4 @@ inline Internal::AtlasGlyphManager& GetImplementation(Toolkit::AtlasGlyphManager } // namespace Dali -#endif // __DALI_TOOLKIT_ATLAS_GLYPH_MANAGER_IMPL_H__ +#endif // DALI_TOOLKIT_ATLAS_GLYPH_MANAGER_IMPL_H