X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Frendering%2Fatlas%2Fatlas-glyph-manager-impl.h;h=0c675014fde43c59c7048d0c042ba8ae2ac75895;hb=refs%2Fchanges%2F65%2F49465%2F8;hp=868add68d9efd05f53190283457b3c25fa7b46ed;hpb=43810310547ea62237f91305e8b9724fd017492a;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 868add6..0c67501 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,4 +1,3 @@ - #ifndef __DALI_TOOLKIT_ATLAS_GLYPH_MANAGER_IMPL_H__ #define __DALI_TOOLKIT_ATLAS_GLYPH_MANAGER_IMPL_H__ @@ -49,21 +48,23 @@ class AtlasGlyphManager : public Dali::BaseObject { public: - struct GlyphRecord + struct GlyphRecordEntry { - Text::FontId mFontId; Text::GlyphIndex mIndex; uint32_t mImageId; + int32_t mCount; }; - AtlasGlyphManager(); - - virtual ~AtlasGlyphManager(); + struct FontGlyphRecord + { + Text::FontId mFontId; + Vector< GlyphRecordEntry > mGlyphRecords; + }; -/** - * Create a new AtlasGlyphManager + /** + * @brief Constructor */ - static AtlasGlyphManagerPtr New(); + AtlasGlyphManager(); /** * @copydoc Toolkit::AtlasGlyphManager::Add @@ -77,48 +78,60 @@ public: */ void GenerateMeshData( uint32_t imageId, const Vector2& position, - MeshData& meshData ); + Toolkit::AtlasManager::Mesh2D& mesh ); /** - * @copydoc Toolkit::AtlasGlyphManager::StitchMesh + * @copydoc Toolkit::AtlasGlyphManager::IsCached */ - void StitchMesh( MeshData& first, - const MeshData& second ); + bool IsCached( Text::FontId fontId, + Text::GlyphIndex index, + Dali::Toolkit::AtlasManager::AtlasSlot& slot ); /** - * @copydoc Toolkit::AtlasGlyphManager::Cached + * @copydoc Toolkit::AtlasGlyphManager::GetAtlasSize */ - void Cached( Text::FontId fontId, - Text::GlyphIndex index, - Dali::Toolkit::AtlasManager::AtlasSlot& slot ); + Vector2 GetAtlasSize( uint32_t atlasId ); /** * @copydoc Toolkit::AtlasGlyphManager::SetNewAtlasSize */ - void SetNewAtlasSize( const Vector2& size, - const Vector2& blockSize ); + void SetNewAtlasSize( uint32_t width, uint32_t height, uint32_t blockWidth, uint32_t blockHeight ); + + /** + * @copydoc Toolkit::AtlasGlyphManager::GetPixelFormat + */ + Pixel::Format GetPixelFormat( uint32_t atlasId ); /** - * @copydoc Toolkit::AtlasGlyphManager::Remove + * @copydoc toolkit::AtlasGlyphManager::AdjustReferenceCount */ - void Remove( uint32_t imageId ); + void AdjustReferenceCount( Text::FontId fontId, Text::GlyphIndex index, int32_t delta ); /** - * @copydoc toolkit::AtlasGlyphManager::GetPixelFormat + * @copydoc Toolkit::AtlasGlyphManager::GetMaterial */ - Pixel::Format GetPixelFormat( uint32_t atlasId ); + Material GetMaterial( uint32_t atlasId ) const; /** - * @copydoc toolkit::AtlasGlyphManager::GetMetrics + * @copydoc Toolkit::AtlasGlyphManager::GetMetrics */ const Toolkit::AtlasGlyphManager::Metrics& GetMetrics(); +protected: + + /** + * A reference counted object may only be deleted by calling Unreference() + */ + virtual ~AtlasGlyphManager(); + private: - Dali::Toolkit::AtlasManager mAtlasManager; - Vector< GlyphRecord > mGlyphRecords; - uint32_t mCount; - Toolkit::AtlasGlyphManager::Metrics mMetrics; + 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 mShaderL8; + Shader mShaderRgba; }; } // namespace Internal @@ -145,5 +158,4 @@ inline Internal::AtlasGlyphManager& GetImplementation(Toolkit::AtlasGlyphManager } // namespace Dali - - #endif // __DALI_TOOLKIT_ATLAS_GLYPH_MANAGER_IMPL_H__ \ No newline at end of file +#endif // __DALI_TOOLKIT_ATLAS_GLYPH_MANAGER_IMPL_H__