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-impl.h;h=da659bc2f289e9efd6f0b90e848a1da1cefd1fc8;hp=3b2b8af5478aa91a6bcac3997adb6339e14d0db5;hb=6861f629112d44d4de1a8a7c70591e2279b951b2;hpb=b79345b4ba7ac5e959d6ee913555e3436ca005f2 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 3b2b8af..da659bc 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 @@ -88,7 +89,7 @@ public: /** * @copydoc Toolkit::AtlasGlyphManager::Cached */ - void Cached( Text::FontId fontId, + bool Cached( Text::FontId fontId, Text::GlyphIndex index, Dali::Toolkit::AtlasManager::AtlasSlot& slot ); @@ -103,14 +104,14 @@ public: void SetNewAtlasSize( uint32_t width, uint32_t height, uint32_t blockWidth, uint32_t blockHeight ); /** - * @copydoc Toolkit::AtlasGlyphManager::Remove + * @copydoc Toolkit::AtlasGlyphManager::GetPixelFormat */ - void Remove( uint32_t imageId ); + Pixel::Format GetPixelFormat( uint32_t atlasId ); /** - * @copydoc Toolkit::AtlasGlyphManager::GetPixelFormat + * @copydoc toolkit::AtlasGlyphManager::AdjustReferenceCount */ - Pixel::Format GetPixelFormat( uint32_t atlasId ); + void AdjustReferenceCount( Text::FontId fontId, Text::GlyphIndex index, int32_t delta ); /** * @copydoc Toolkit::AtlasGlyphManager::GetMaterial @@ -120,7 +121,7 @@ public: /** * @copydoc Toolkit::AtlasGlyphManager::GetMaterial */ - Sampler GetSampler( uint32_t atlasId ) const; + Image GetImage( uint32_t atlasId ) const; /** * @copydoc Toolkit::AtlasGlyphManager::GetMetrics @@ -143,10 +144,17 @@ public: 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 - Vector< GlyphRecord > mGlyphRecords; ///> Cached glyph information + 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 @@ -176,5 +184,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__