Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
c38bd402
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
c38bd402
编写于
7月 24, 2018
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[closure] Separate in and out glyphs
Fixes
https://github.com/harfbuzz/harfbuzz/issues/1107
上级
85646fda
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
33 addition
and
9 deletion
+33
-9
src/hb-ot-layout-gsub-table.hh
src/hb-ot-layout-gsub-table.hh
+18
-8
src/hb-ot-layout-gsubgpos-private.hh
src/hb-ot-layout-gsubgpos-private.hh
+15
-1
未找到文件。
src/hb-ot-layout-gsub-table.hh
浏览文件 @
c38bd402
...
...
@@ -47,7 +47,7 @@ struct SingleSubstFormat1
* https://github.com/harfbuzz/harfbuzz/issues/363 */
hb_codepoint_t
glyph_id
=
iter
.
get_glyph
();
if
(
c
->
glyphs
->
has
(
glyph_id
))
c
->
glyphs
->
add
((
glyph_id
+
deltaGlyphID
)
&
0xFFFFu
);
c
->
out
->
add
((
glyph_id
+
deltaGlyphID
)
&
0xFFFFu
);
}
}
...
...
@@ -132,7 +132,7 @@ struct SingleSubstFormat2
if
(
unlikely
(
iter
.
get_coverage
()
>=
count
))
break
;
/* Work around malicious fonts. https://github.com/harfbuzz/harfbuzz/issues/363 */
if
(
c
->
glyphs
->
has
(
iter
.
get_glyph
()))
c
->
glyphs
->
add
(
substitute
[
iter
.
get_coverage
()]);
c
->
out
->
add
(
substitute
[
iter
.
get_coverage
()]);
}
}
...
...
@@ -263,7 +263,7 @@ struct Sequence
TRACE_CLOSURE
(
this
);
unsigned
int
count
=
substitute
.
len
;
for
(
unsigned
int
i
=
0
;
i
<
count
;
i
++
)
c
->
glyphs
->
add
(
substitute
[
i
]);
c
->
out
->
add
(
substitute
[
i
]);
}
inline
void
collect_glyphs
(
hb_collect_glyphs_context_t
*
c
)
const
...
...
@@ -464,7 +464,7 @@ struct AlternateSubstFormat1
const
AlternateSet
&
alt_set
=
this
+
alternateSet
[
iter
.
get_coverage
()];
unsigned
int
count
=
alt_set
.
len
;
for
(
unsigned
int
i
=
0
;
i
<
count
;
i
++
)
c
->
glyphs
->
add
(
alt_set
[
i
]);
c
->
out
->
add
(
alt_set
[
i
]);
}
}
}
...
...
@@ -605,7 +605,7 @@ struct Ligature
for
(
unsigned
int
i
=
1
;
i
<
count
;
i
++
)
if
(
!
c
->
glyphs
->
has
(
component
[
i
]))
return
;
c
->
glyphs
->
add
(
ligGlyph
);
c
->
out
->
add
(
ligGlyph
);
}
inline
void
collect_glyphs
(
hb_collect_glyphs_context_t
*
c
)
const
...
...
@@ -957,7 +957,7 @@ struct ReverseChainSingleSubstFormat1
if
(
unlikely
(
iter
.
get_coverage
()
>=
count
))
break
;
/* Work around malicious fonts. https://github.com/harfbuzz/harfbuzz/issues/363 */
if
(
c
->
glyphs
->
has
(
iter
.
get_glyph
()))
c
->
glyphs
->
add
(
substitute
[
iter
.
get_coverage
()]);
c
->
out
->
add
(
substitute
[
iter
.
get_coverage
()]);
}
}
...
...
@@ -1163,7 +1163,12 @@ struct SubstLookup : Lookup
return_trace
(
HB_VOID
);
c
->
set_recurse_func
(
dispatch_closure_recurse_func
);
return_trace
(
dispatch
(
c
));
hb_closure_context_t
::
return_t
ret
=
dispatch
(
c
);
c
->
flush
();
return_trace
(
ret
);
}
inline
hb_collect_glyphs_context_t
::
return_t
collect_glyphs
(
hb_collect_glyphs_context_t
*
c
)
const
...
...
@@ -1265,7 +1270,12 @@ struct SubstLookup : Lookup
{
if
(
!
c
->
should_visit_lookup
(
lookup_index
))
return
HB_VOID
;
return
dispatch_recurse_func
(
c
,
lookup_index
);
hb_closure_context_t
::
return_t
ret
=
dispatch_recurse_func
(
c
,
lookup_index
);
c
->
flush
();
return
ret
;
}
template
<
typename
context_t
>
...
...
src/hb-ot-layout-gsubgpos-private.hh
浏览文件 @
c38bd402
...
...
@@ -69,12 +69,13 @@ struct hb_closure_context_t :
bool
is_lookup_done
(
unsigned
int
lookup_index
)
{
/
/ Have we visited this lookup with the current set of glyphs?
/
* Have we visited this lookup with the current set of glyphs? */
return
done_lookups
->
get
(
lookup_index
)
==
glyphs
->
get_population
();
}
hb_face_t
*
face
;
hb_set_t
*
glyphs
;
hb_set_t
*
out
;
recurse_func_t
recurse_func
;
unsigned
int
nesting_level_left
;
unsigned
int
debug_depth
;
...
...
@@ -85,13 +86,26 @@ struct hb_closure_context_t :
unsigned
int
nesting_level_left_
=
HB_MAX_NESTING_LEVEL
)
:
face
(
face_
),
glyphs
(
glyphs_
),
out
(
hb_set_create
()),
recurse_func
(
nullptr
),
nesting_level_left
(
nesting_level_left_
),
debug_depth
(
0
),
done_lookups
(
done_lookups_
)
{}
~
hb_closure_context_t
(
void
)
{
flush
();
hb_set_destroy
(
out
);
}
void
set_recurse_func
(
recurse_func_t
func
)
{
recurse_func
=
func
;
}
void
flush
(
void
)
{
hb_set_union
(
glyphs
,
out
);
hb_set_clear
(
out
);
}
private:
hb_map_t
*
done_lookups
;
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录