X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Frendering%2Fatlas%2Fatlas-glyph-manager-impl.h;h=5a90d1776e8cca5f44baae51ba1b652d155b2c34;hb=refs%2Fchanges%2F87%2F42887%2F6;hp=cbbe732f128f77e77922878544e7be80eb8f129b;hpb=b88f2695b93192680a5779764757ada1534c57fe;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 cbbe732..5a90d17 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 @@ -49,11 +49,17 @@ class AtlasGlyphManager : public Dali::BaseObject { public: - struct GlyphRecord + struct GlyphRecordEntry { - Text::FontId mFontId; Text::GlyphIndex mIndex; uint32_t mImageId; + int32_t mCount; + }; + + struct FontGlyphRecord + { + Text::FontId mFontId; + Vector< GlyphRecordEntry > mGlyphRecords; }; AtlasGlyphManager(); @@ -77,18 +83,18 @@ 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 ); @@ -103,26 +109,53 @@ 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, uint32_t imageId, int32_t delta ); /** - * @copydoc toolkit::AtlasGlyphManager::GetMetrics + * @copydoc Toolkit::AtlasGlyphManager::GetMaterial + */ + 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; + } + + /** + * @copydoc Toolkit::AtlasGlyphManager::GetGlyphShadowShader + */ + Shader GetGlyphShadowShader() const + { + return mShadowShader; + } + 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 mEffectBufferShader; ///> Shader used to render drop shadow buffer textures + Shader mShadowShader; ///> Shader used to render drop shadow into buffer }; } // namespace Internal @@ -150,4 +183,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__