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=383158927d1ccdb507be6464c3f452e8b5635bf4;hp=26dea0b2a512428e67be631792e15d5151bcb852;hb=a2de9cf491172cd5da9dc9ed60b17683dab6d7bc;hpb=d41c68d7d25046369262fd8a238a80d3eea21034 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 26dea0b..3831589 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 @@ -50,9 +50,9 @@ public: ~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 + 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 }; /** @@ -99,15 +99,6 @@ public: Toolkit::AtlasManager::Mesh2D& mesh ); /** - * @brief Stitch Two Meshes together - * - * @param[in] first first mesh - * @param[in] second second mesh - */ - void StitchMesh( Toolkit::AtlasManager::Mesh2D& first, - const Toolkit::AtlasManager::Mesh2D& second ); - - /** * @brief Check to see if a glyph is being cached * * @param[in] fontId The font that this glyph comes from @@ -116,9 +107,9 @@ public: * * @return Whether glyph is cached or not ? */ - bool 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 @@ -149,22 +140,22 @@ public: Pixel::Format GetPixelFormat( uint32_t atlasId ); /** - * @brief Get the material used by an atlas + * @brief Get the texture set used by an atlas * * @param[in] atlasId Id of an atlas * - * @return The material used by the atlas + * @return The texture set used by the atlas */ - Material GetMaterial( uint32_t atlasId ) const; + TextureSet GetTextures( uint32_t atlasId ) const; /** - * @brief Get the sampler used by an atlas + * @brief Get the shader used by an atlas * * @param[in] atlasId Id of an atlas * - * @return The sampler used by the atlas + * @return The shader used by the atlas */ - Sampler GetSampler( uint32_t atlasId ) const; + Shader GetShader( uint32_t atlasId ) const; /** * @brief Get Glyph Manager metrics @@ -182,20 +173,6 @@ public: */ void AdjustReferenceCount( Text::FontId fontId, Text::GlyphIndex index, int32_t delta ); - /** - * @brief Get Shader used for rendering glyph effect buffers - * - * @return Handle of shader needed - */ - Shader GetEffectBufferShader() const; - - /** - * @brief Get Shader used rendering Glyph Shadows - * - * @return Handle of shader needed - */ - Shader GetGlyphShadowShader() const; - private: explicit DALI_INTERNAL AtlasGlyphManager(Internal::AtlasGlyphManager *impl);