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=c4da1ba9413402d8ed732fca82442063e0d97153;hb=6861f629112d44d4de1a8a7c70591e2279b951b2;hpb=10d2080e1d25b75347daa2f8c2dcee494fbcb175 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 c4da1ba..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 @@ -77,42 +78,86 @@ public: */ void GenerateMeshData( uint32_t imageId, const Vector2& position, - MeshData& meshData ); + Toolkit::AtlasManager::Mesh2D& mesh ); /** * @copydoc Toolkit::AtlasGlyphManager::StitchMesh */ - void StitchMesh( MeshData& first, - const MeshData& second ); + void StitchMesh( Toolkit::AtlasManager::Mesh2D& first, + const Toolkit::AtlasManager::Mesh2D& second ); /** * @copydoc Toolkit::AtlasGlyphManager::Cached */ - void Cached( Text::FontId fontId, + bool Cached( Text::FontId fontId, Text::GlyphIndex index, Dali::Toolkit::AtlasManager::AtlasSlot& slot ); /** - * @copydoc Toolkit::AtlasGlyphManager::SetAtlasSize + * @copydoc Toolkit::AtlasGlyphManager::GetAtlasSize */ - void SetAtlasSize( const Vector2& size, - const Vector2& blockSize ); + Vector2 GetAtlasSize( uint32_t atlasId ); /** - * @copydoc Toolkit::AtlasGlyphManager::Remove + * @copydoc Toolkit::AtlasGlyphManager::SetNewAtlasSize */ - void Remove( uint32_t imageId ); + void SetNewAtlasSize( uint32_t width, uint32_t height, uint32_t blockWidth, uint32_t blockHeight ); /** - * @copydoc toolkit::AtlasGlyphManager::GetPixelFormat + * @copydoc Toolkit::AtlasGlyphManager::GetPixelFormat */ 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; + + /** + * @copydoc Toolkit::AtlasGlyphManager::GetMaterial + */ + Image GetImage( 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; - Vector< GlyphRecord > mGlyphRecords; - uint32_t mCount; + 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 }; } // namespace Internal @@ -139,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__