未验证 提交 b61a5b91 编写于 作者: O openharmony_ci 提交者: Gitee

!873 ENABLE_SPANNALBE_STRING 拼写错误问题

Merge pull request !873 from Itachi/master
...@@ -644,7 +644,7 @@ int8_t UIFontVector::GetGlyphNode(uint32_t unicode, GlyphNode& glyphNode, uint16 ...@@ -644,7 +644,7 @@ int8_t UIFontVector::GetGlyphNode(uint32_t unicode, GlyphNode& glyphNode, uint16
return RET_VALUE_OK; return RET_VALUE_OK;
} }
#if defined(ENABLE_SPANNALBE_STRING) && ENABLE_SPANNALBE_STRING #if defined(ENABLE_SPANNABLE_STRING) && ENABLE_SPANNABLE_STRING
uint8_t* bitmap = UIFontCacheManager::GetInstance()->GetBitmap(fontKey, unicode, glyphNode.textStyle); uint8_t* bitmap = UIFontCacheManager::GetInstance()->GetBitmap(fontKey, unicode, glyphNode.textStyle);
#else #else
uint8_t* bitmap = UIFontCacheManager::GetInstance()->GetBitmap(fontKey, unicode); uint8_t* bitmap = UIFontCacheManager::GetInstance()->GetBitmap(fontKey, unicode);
...@@ -682,7 +682,7 @@ int8_t UIFontVector::GetGlyphNode(uint32_t unicode, GlyphNode& glyphNode, uint16 ...@@ -682,7 +682,7 @@ int8_t UIFontVector::GetGlyphNode(uint32_t unicode, GlyphNode& glyphNode, uint16
uint8_t* UIFontVector::GetBitmap(uint32_t unicode, GlyphNode& glyphNode, uint16_t fontId, uint8_t fontSize) uint8_t* UIFontVector::GetBitmap(uint32_t unicode, GlyphNode& glyphNode, uint16_t fontId, uint8_t fontSize)
{ {
uint16_t fontKey = GetKey(fontId, fontSize); uint16_t fontKey = GetKey(fontId, fontSize);
#if ENABLE_SPANNALBE_STRING #if ENABLE_SPANNABLE_STRING
uint8_t* bitmap = UIFontCacheManager::GetInstance()->GetBitmap(fontKey, unicode, glyphNode.textStyle); uint8_t* bitmap = UIFontCacheManager::GetInstance()->GetBitmap(fontKey, unicode, glyphNode.textStyle);
#else #else
uint8_t* bitmap = UIFontCacheManager::GetInstance()->GetBitmap(fontKey, unicode); uint8_t* bitmap = UIFontCacheManager::GetInstance()->GetBitmap(fontKey, unicode);
...@@ -713,7 +713,7 @@ uint8_t* UIFontVector::GetBitmap(uint32_t unicode, GlyphNode& glyphNode, uint16_ ...@@ -713,7 +713,7 @@ uint8_t* UIFontVector::GetBitmap(uint32_t unicode, GlyphNode& glyphNode, uint16_
return nullptr; return nullptr;
} }
#if defined(ENABLE_SPANNALBE_STRING) && ENABLE_SPANNALBE_STRING #if defined(ENABLE_SPANNABLE_STRING) && ENABLE_SPANNABLE_STRING
bitmap = UIFontCacheManager::GetInstance()->GetBitmap(fontKey, unicode, glyphNode.textStyle); bitmap = UIFontCacheManager::GetInstance()->GetBitmap(fontKey, unicode, glyphNode.textStyle);
#else #else
bitmap = UIFontCacheManager::GetInstance()->GetBitmap(fontKey, unicode); bitmap = UIFontCacheManager::GetInstance()->GetBitmap(fontKey, unicode);
...@@ -733,7 +733,7 @@ bool UIFontVector::IsEmojiFont(uint16_t fontId) ...@@ -733,7 +733,7 @@ bool UIFontVector::IsEmojiFont(uint16_t fontId)
return (fontInfo_[fontId].fontWeight >= 16); // 16: rgb color font return (fontInfo_[fontId].fontWeight >= 16); // 16: rgb color font
} }
#if defined(ENABLE_SPANNALBE_STRING) && ENABLE_SPANNALBE_STRING #if defined(ENABLE_SPANNABLE_STRING) && ENABLE_SPANNABLE_STRING
void UIFontVector::SetItaly(FT_GlyphSlot slot) void UIFontVector::SetItaly(FT_GlyphSlot slot)
{ {
if (slot->format != FT_GLYPH_FORMAT_OUTLINE) { if (slot->format != FT_GLYPH_FORMAT_OUTLINE) {
...@@ -806,7 +806,7 @@ int8_t UIFontVector::LoadGlyphIntoFace(uint16_t& fontId, uint8_t fontSize, uint3 ...@@ -806,7 +806,7 @@ int8_t UIFontVector::LoadGlyphIntoFace(uint16_t& fontId, uint8_t fontSize, uint3
glyphNode.advance = static_cast<uint16_t>(faceInfo.face->glyph->advance.x / FONT_PIXEL_IN_POINT); glyphNode.advance = static_cast<uint16_t>(faceInfo.face->glyph->advance.x / FONT_PIXEL_IN_POINT);
glyphNode.fontId = fontId; glyphNode.fontId = fontId;
#if defined(ENABLE_SPANNALBE_STRING) && ENABLE_SPANNALBE_STRING #if defined(ENABLE_SPANNABLE_STRING) && ENABLE_SPANNABLE_STRING
SetFace(faceInfo, unicode, glyphNode.textStyle); SetFace(faceInfo, unicode, glyphNode.textStyle);
#else #else
SetFace(faceInfo, unicode); SetFace(faceInfo, unicode);
...@@ -864,7 +864,7 @@ uint8_t UIFontVector::IsGlyphFont(uint32_t unicode) ...@@ -864,7 +864,7 @@ uint8_t UIFontVector::IsGlyphFont(uint32_t unicode)
void UIFontVector::SetFace(FaceInfo& faceInfo, uint32_t unicode) void UIFontVector::SetFace(FaceInfo& faceInfo, uint32_t unicode)
{ {
#if defined(ENABLE_SPANNALBE_STRING) && ENABLE_SPANNALBE_STRING #if defined(ENABLE_SPANNABLE_STRING) && ENABLE_SPANNABLE_STRING
SetFace(faceInfo, unicode, TEXT_STYLE_NORMAL); SetFace(faceInfo, unicode, TEXT_STYLE_NORMAL);
#else #else
Metric* f = reinterpret_cast<Metric*>(UIMalloc(sizeof(Metric))); Metric* f = reinterpret_cast<Metric*>(UIMalloc(sizeof(Metric)));
...@@ -923,7 +923,7 @@ void UIFontVector::SetFace(FaceInfo& faceInfo, uint32_t unicode) ...@@ -923,7 +923,7 @@ void UIFontVector::SetFace(FaceInfo& faceInfo, uint32_t unicode)
#endif #endif
} }
#if defined(ENABLE_SPANNALBE_STRING) && ENABLE_SPANNALBE_STRING #if defined(ENABLE_SPANNABLE_STRING) && ENABLE_SPANNABLE_STRING
void UIFontVector::SetFace(FaceInfo& faceInfo, uint32_t unicode, TextStyle textStyle) void UIFontVector::SetFace(FaceInfo& faceInfo, uint32_t unicode, TextStyle textStyle)
{ {
Metric f; Metric f;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册