Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
c624e18a
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看板
提交
c624e18a
编写于
8月 26, 2018
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[OT] Move code around
上级
39990946
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
21 addition
and
20 deletion
+21
-20
src/hb-ot-layout-gsub-table.hh
src/hb-ot-layout-gsub-table.hh
+0
-18
src/hb-ot-layout.cc
src/hb-ot-layout.cc
+21
-2
未找到文件。
src/hb-ot-layout-gsub-table.hh
浏览文件 @
c624e18a
...
...
@@ -1308,8 +1308,6 @@ struct GSUB : GSUBGPOS
inline
const
SubstLookup
&
get_lookup
(
unsigned
int
i
)
const
{
return
CastR
<
SubstLookup
>
(
GSUBGPOS
::
get_lookup
(
i
));
}
static
inline
void
substitute_start
(
hb_font_t
*
font
,
hb_buffer_t
*
buffer
);
inline
bool
sanitize
(
hb_sanitize_context_t
*
c
)
const
{
TRACE_SANITIZE
(
this
);
...
...
@@ -1322,22 +1320,6 @@ struct GSUB : GSUBGPOS
};
void
GSUB
::
substitute_start
(
hb_font_t
*
font
,
hb_buffer_t
*
buffer
)
{
_hb_buffer_assert_gsubgpos_vars
(
buffer
);
const
GDEF
&
gdef
=
_get_gdef
(
font
->
face
);
unsigned
int
count
=
buffer
->
len
;
for
(
unsigned
int
i
=
0
;
i
<
count
;
i
++
)
{
_hb_glyph_info_set_glyph_props
(
&
buffer
->
info
[
i
],
gdef
.
get_glyph_props
(
buffer
->
info
[
i
].
codepoint
));
_hb_glyph_info_clear_lig_props
(
&
buffer
->
info
[
i
]);
buffer
->
info
[
i
].
syllable
()
=
0
;
}
}
/* Out-of-class implementation for methods recursing */
/*static*/
inline
bool
ExtensionSubst
::
is_reverse
(
void
)
const
...
...
src/hb-ot-layout.cc
浏览文件 @
c624e18a
...
...
@@ -213,6 +213,24 @@ OT::GDEF::accelerator_t::init (hb_face_t *face)
table
=
this
->
blob
->
as
<
GDEF
>
();
}
static
void
_hb_ot_layout_set_glyph_props
(
hb_font_t
*
font
,
hb_buffer_t
*
buffer
)
{
_hb_buffer_assert_gsubgpos_vars
(
buffer
);
const
OT
::
GDEF
&
gdef
=
_get_gdef
(
font
->
face
);
unsigned
int
count
=
buffer
->
len
;
for
(
unsigned
int
i
=
0
;
i
<
count
;
i
++
)
{
_hb_glyph_info_set_glyph_props
(
&
buffer
->
info
[
i
],
gdef
.
get_glyph_props
(
buffer
->
info
[
i
].
codepoint
));
_hb_glyph_info_clear_lig_props
(
&
buffer
->
info
[
i
]);
buffer
->
info
[
i
].
syllable
()
=
0
;
}
}
/* Public API */
hb_bool_t
hb_ot_layout_has_glyph_classes
(
hb_face_t
*
face
)
{
...
...
@@ -902,9 +920,10 @@ hb_ot_layout_lookup_would_substitute_fast (hb_face_t *face,
}
void
hb_ot_layout_substitute_start
(
hb_font_t
*
font
,
hb_buffer_t
*
buffer
)
hb_ot_layout_substitute_start
(
hb_font_t
*
font
,
hb_buffer_t
*
buffer
)
{
OT
::
GSUB
::
substitute_start
(
font
,
buffer
);
_hb_ot_layout_set_glyph_props
(
font
,
buffer
);
}
/**
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录