Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
75483aaf
T
Third Party Harfbuzz
项目概览
OpenHarmony
/
Third Party Harfbuzz
1 年多 前同步成功
通知
0
Star
18
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
T
Third Party Harfbuzz
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
75483aaf
编写于
11月 04, 2015
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Untangle if/else waterfall
上级
04fd8517
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
27 addition
and
13 deletion
+27
-13
src/hb-ot-shape-normalize.cc
src/hb-ot-shape-normalize.cc
+27
-13
未找到文件。
src/hb-ot-shape-normalize.cc
浏览文件 @
75483aaf
...
...
@@ -164,26 +164,40 @@ decompose_current_character (const hb_ot_shape_normalize_context_t *c, bool shor
{
hb_buffer_t
*
const
buffer
=
c
->
buffer
;
hb_codepoint_t
u
=
buffer
->
cur
().
codepoint
;
hb_codepoint_t
glyph
,
space_glyph
;
hb_unicode_funcs_t
::
space_t
space_type
;
hb_codepoint_t
glyph
;
/* Kind of a cute waterfall here... */
if
(
shortest
&&
c
->
font
->
get_glyph
(
u
,
0
,
&
glyph
))
{
next_char
(
buffer
,
glyph
);
else
if
(
decompose
(
c
,
shortest
,
u
))
return
;
}
if
(
decompose
(
c
,
shortest
,
u
))
{
skip_char
(
buffer
);
else
if
(
!
shortest
&&
c
->
font
->
get_glyph
(
u
,
0
,
&
glyph
))
return
;
}
if
(
!
shortest
&&
c
->
font
->
get_glyph
(
u
,
0
,
&
glyph
))
{
next_char
(
buffer
,
glyph
);
else
if
(
_hb_glyph_info_is_unicode_space
(
&
buffer
->
cur
())
&&
(
space_type
=
buffer
->
unicode
->
space_fallback_type
(
u
))
!=
hb_unicode_funcs_t
::
NOT_SPACE
&&
c
->
font
->
get_glyph
(
0x0020u
,
0
,
&
space_glyph
))
return
;
}
if
(
_hb_glyph_info_is_unicode_space
(
&
buffer
->
cur
()))
{
_hb_glyph_info_set_unicode_space_fallback_type
(
&
buffer
->
cur
(),
space_type
);
next_char
(
buffer
,
space_glyph
);
buffer
->
scratch_flags
|=
HB_BUFFER_SCRATCH_FLAG_HAS_SPACE_FALLBACK
;
hb_codepoint_t
space_glyph
;
hb_unicode_funcs_t
::
space_t
space_type
=
buffer
->
unicode
->
space_fallback_type
(
u
);
if
(
space_type
!=
hb_unicode_funcs_t
::
NOT_SPACE
&&
c
->
font
->
get_glyph
(
0x0020u
,
0
,
&
space_glyph
))
{
_hb_glyph_info_set_unicode_space_fallback_type
(
&
buffer
->
cur
(),
space_type
);
next_char
(
buffer
,
space_glyph
);
buffer
->
scratch_flags
|=
HB_BUFFER_SCRATCH_FLAG_HAS_SPACE_FALLBACK
;
return
;
}
}
else
next_char
(
buffer
,
glyph
);
/* glyph is initialized in earlier branches. */
next_char
(
buffer
,
glyph
);
/* glyph is initialized in earlier branches. */
}
static
inline
void
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录