X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Frendering%2Fatlas%2Fatlas-glyph-manager-impl.h;h=3d2613e2b8c1512c02559565283d96657b92210b;hb=6e1032b5996011523338aa4bc5cdbeffcfc71ad5;hp=0d328349a2978fcdb6b898bbe9b3fa6cb33fff2c;hpb=bef7b82cd945f4d2fd3b4d776184c1fc0851c8c6;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 0d32834..3d2613e 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,8 +1,8 @@ -#ifndef __DALI_TOOLKIT_ATLAS_GLYPH_MANAGER_IMPL_H__ -#define __DALI_TOOLKIT_ATLAS_GLYPH_MANAGER_IMPL_H__ +#ifndef DALI_TOOLKIT_ATLAS_GLYPH_MANAGER_IMPL_H +#define DALI_TOOLKIT_ATLAS_GLYPH_MANAGER_IMPL_H /* - * Copyright (c) 2015 Samsung Electronics Co., Ltd. + * Copyright (c) 2019 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -51,9 +51,11 @@ public: struct GlyphRecordEntry { Text::GlyphIndex mIndex; - uint32_t mOutlineWidth; uint32_t mImageId; int32_t mCount; + uint16_t mOutlineWidth; + bool isItalic:1; + bool isBold:1; }; struct FontGlyphRecord @@ -71,7 +73,7 @@ public: * @copydoc Toolkit::AtlasGlyphManager::Add */ void Add( const Text::GlyphInfo& glyph, - const uint32_t outlineWidth, + const Toolkit::AtlasGlyphManager::GlyphStyle& style, const PixelData& bitmap, Dali::Toolkit::AtlasManager::AtlasSlot& slot ); @@ -87,7 +89,7 @@ public: */ bool IsCached( Text::FontId fontId, Text::GlyphIndex index, - uint32_t outlineWidth, + const Toolkit::AtlasGlyphManager::GlyphStyle& style, Dali::Toolkit::AtlasManager::AtlasSlot& slot ); /** @@ -108,7 +110,7 @@ public: /** * @copydoc toolkit::AtlasGlyphManager::AdjustReferenceCount */ - void AdjustReferenceCount( Text::FontId fontId, Text::GlyphIndex index, uint32_t outlineWidth, int32_t delta ); + void AdjustReferenceCount( Text::FontId fontId, Text::GlyphIndex index, const Toolkit::AtlasGlyphManager::GlyphStyle& style, int32_t delta ); /** * @copydoc Toolkit::AtlasGlyphManager::GetTextures @@ -158,4 +160,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