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=5a90d1776e8cca5f44baae51ba1b652d155b2c34;hp=50684268b18346bcceffdae4fe02d3d52eb91eaa;hb=ca02242b9d6389f6e02a120afb42645c5f2c9557;hpb=56d412791a44c2a79135d2293c13fddb135c9d54 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 5068426..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 ); @@ -100,30 +106,56 @@ public: /** * @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::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 @@ -151,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__