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.h;h=1870bd514dece91f058d715198634c8324dab632;hp=cbfa7544b0bb1aab36342c51a45a4f0e3d2a7e05;hb=225ea9dd33c2d8669d8dac1f2b116eeb2ea00c0d;hpb=9db1f87a421a896c62580a733449486512315c9a diff --git a/dali-toolkit/internal/text/rendering/atlas/atlas-glyph-manager.h b/dali-toolkit/internal/text/rendering/atlas/atlas-glyph-manager.h index cbfa754..1870bd5 100644 --- a/dali-toolkit/internal/text/rendering/atlas/atlas-glyph-manager.h +++ b/dali-toolkit/internal/text/rendering/atlas/atlas-glyph-manager.h @@ -19,7 +19,7 @@ */ // INTERNAL INCLUDES -#include +#include #include namespace Dali @@ -34,7 +34,7 @@ class AtlasGlyphManager; } -class DALI_IMPORT_API AtlasGlyphManager : public BaseHandle +class AtlasGlyphManager : public BaseHandle { public: @@ -43,8 +43,16 @@ public: */ struct Metrics { - uint32_t mGlyphCount; // number of glyphs being managed - AtlasManager::Metrics mAtlasMetrics; // metrics from the Atlas Manager + Metrics() + : mGlyphCount( 0u ) + {} + + ~Metrics() + {} + + uint32_t mGlyphCount; ///< number of glyphs being managed + std::string mVerboseGlyphCounts; ///< a verbose list of the glyphs + ref counts + AtlasManager::Metrics mAtlasMetrics; ///< metrics from the Atlas Manager }; /** @@ -88,16 +96,7 @@ public: */ void GenerateMeshData( uint32_t imageId, const Vector2& position, - MeshData& meshData ); - - /** - * @brief Stitch Two Meshes together - * - * @param[in] first first mesh - * @param[in] second second mesh - */ - void StitchMesh( MeshData& first, - const MeshData& second ); + Toolkit::AtlasManager::Mesh2D& mesh ); /** * @brief Check to see if a glyph is being cached @@ -105,10 +104,12 @@ public: * @param[in] fontId The font that this glyph comes from * @param[in] index The GlyphIndex of this glyph * @param[out] slot container holding information about the glyph( mImage = 0 indicates not being cached ) + * + * @return Whether glyph is cached or not ? */ - void Cached( Text::FontId fontId, - Text::GlyphIndex index, - AtlasManager::AtlasSlot& slot ); + bool IsCached( Text::FontId fontId, + Text::GlyphIndex index, + AtlasManager::AtlasSlot& slot ); /** * @brief Retrieve the size of an atlas @@ -119,21 +120,15 @@ public: */ Vector2 GetAtlasSize( uint32_t atlasId ); - /** - * @brief Set the Atlas size and block size for subsequent atlas generation - * - * @param[in] size size of the atlas in pixels - * @param[in] blockSize size of a block in this atlas in pixels - */ - void SetNewAtlasSize( const Vector2& size, - const Vector2& blockSize ); - - /** - * @brief Unreference an image from the atlas and remove from cache if no longer needed - * - * @param[in] imageId ID of the image - */ - void Remove( uint32_t imageId ); + /** + * @brief Set the atlas size and block size for subsequent Atlas generation + * + * @param[in] width width of atlas in pixels + * @param[in] height height of atlas in pixels + * @param[in] blockWidth width of a block in pixels + * @param[in] blockHeight height of a block in pixels + */ + void SetNewAtlasSize( uint32_t width, uint32_t height, uint32_t blockWidth, uint32_t blockHeight ); /** * @brief Get the Pixel Format used by an atlas @@ -145,12 +140,30 @@ public: Pixel::Format GetPixelFormat( uint32_t atlasId ); /** + * @brief Get the material used by an atlas + * + * @param[in] atlasId Id of an atlas + * + * @return The material used by the atlas + */ + Material GetMaterial( uint32_t atlasId ) const; + + /** * @brief Get Glyph Manager metrics * * @return const reference to glyph manager metrics */ const Metrics& GetMetrics(); + /** + * @brief Adjust the reference count for glyph + * + * @param[in] fontId The font this image came from + * @param[in] index The index of the glyph + * @param[in] delta The adjustment to make to the reference count + */ + void AdjustReferenceCount( Text::FontId fontId, Text::GlyphIndex index, int32_t delta ); + private: explicit DALI_INTERNAL AtlasGlyphManager(Internal::AtlasGlyphManager *impl);