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=0c675014fde43c59c7048d0c042ba8ae2ac75895;hp=9fe8ead9b80ce39e95c9a5b2dae22ded24a53861;hb=d73cb8d5620abe0cce65941ce63ce2cf5de6690b;hpb=31df2b9472ccbe0ae460a958535be8ef790c96f2 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 9fe8ead..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__ @@ -62,20 +61,15 @@ public: Vector< GlyphRecordEntry > mGlyphRecords; }; - AtlasGlyphManager(); - - virtual ~AtlasGlyphManager(); - -/** - * Create a new AtlasGlyphManager + /** + * @brief Constructor */ - static AtlasGlyphManagerPtr New(); + AtlasGlyphManager(); /** * @copydoc Toolkit::AtlasGlyphManager::Add */ - void Add( Text::FontId fontId, - const Text::GlyphInfo& glyph, + void Add( const Text::GlyphInfo& glyph, const BufferImage& bitmap, Dali::Toolkit::AtlasManager::AtlasSlot& slot ); @@ -87,17 +81,11 @@ public: 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, + Dali::Toolkit::AtlasManager::AtlasSlot& slot ); /** * @copydoc Toolkit::AtlasGlyphManager::GetAtlasSize @@ -117,7 +105,7 @@ public: /** * @copydoc toolkit::AtlasGlyphManager::AdjustReferenceCount */ - void AdjustReferenceCount( Text::FontId fontId, uint32_t imageId, int32_t delta ); + void AdjustReferenceCount( Text::FontId fontId, Text::GlyphIndex index, int32_t delta ); /** * @copydoc Toolkit::AtlasGlyphManager::GetMaterial @@ -125,38 +113,25 @@ public: Material GetMaterial( uint32_t atlasId ) const; /** - * @copydoc Toolkit::AtlasGlyphManager::GetMaterial - */ - Sampler GetSampler( uint32_t atlasId ) const; - - /** * @copydoc Toolkit::AtlasGlyphManager::GetMetrics */ const Toolkit::AtlasGlyphManager::Metrics& GetMetrics(); - /** - * @copydoc Toolkit::AtlasGlyphManager::GetEffectBufferShader - */ - Shader GetEffectBufferShader() const - { - return mEffectBufferShader; - } +protected: /** - * @copydoc Toolkit::AtlasGlyphManager::GetGlyphShadowShader + * A reference counted object may only be deleted by calling Unreference() */ - Shader GetGlyphShadowShader() const - { - return mShadowShader; - } + 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 + + Shader mShaderL8; + Shader mShaderRgba; }; } // namespace Internal @@ -183,5 +158,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__