Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
c3f9f7e5
T
Third Party Harfbuzz
项目概览
OpenHarmony
/
Third Party Harfbuzz
接近 2 年 前同步成功
通知
1
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看板
提交
c3f9f7e5
编写于
11月 05, 2009
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix MarkMark issue with ligid and components
上级
d0351314
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
7 addition
and
10 deletion
+7
-10
src/hb-ot-layout-gpos-private.hh
src/hb-ot-layout-gpos-private.hh
+6
-5
src/hb-ot-layout-gsub-private.hh
src/hb-ot-layout-gsub-private.hh
+1
-5
未找到文件。
src/hb-ot-layout-gpos-private.hh
浏览文件 @
c3f9f7e5
...
...
@@ -1065,9 +1065,9 @@ struct MarkLigPosFormat1
* is identical to the ligature ID of the found ligature. If yes, we
* can directly use the component index. If not, we attach the mark
* glyph to the last component of the ligature. */
if
(
IN_LIGID
(
j
)
==
IN_LIGID
(
buffer
->
in_pos
))
if
(
IN_LIGID
(
j
)
&&
IN_LIGID
(
j
)
==
IN_LIGID
(
buffer
->
in_pos
)
&&
IN_COMPONENT
(
buffer
->
in_pos
))
{
comp_index
=
IN_COMPONENT
(
buffer
->
in_pos
);
comp_index
=
IN_COMPONENT
(
buffer
->
in_pos
)
-
1
;
if
(
comp_index
>=
comp_count
)
comp_index
=
comp_count
-
1
;
}
...
...
@@ -1164,9 +1164,10 @@ struct MarkMarkPosFormat1
return
false
;
/* Two marks match only if they belong to the same base, or same component
* of the same ligature. */
if
(
IN_LIGID
(
j
)
!=
IN_LIGID
(
buffer
->
in_pos
)
||
IN_COMPONENT
(
j
)
!=
IN_COMPONENT
(
buffer
->
in_pos
))
* of the same ligature. That is, the component numbers must match, and
* if those are non-zero, the ligid number should also match. */
if
((
IN_COMPONENT
(
j
)
!=
IN_COMPONENT
(
buffer
->
in_pos
))
||
(
IN_COMPONENT
(
j
)
&&
IN_LIGID
(
j
)
!=
IN_LIGID
(
buffer
->
in_pos
)))
return
false
;
unsigned
int
mark2_index
=
(
this
+
mark2Coverage
)
(
IN_GLYPH
(
j
));
...
...
src/hb-ot-layout-gsub-private.hh
浏览文件 @
c3f9f7e5
...
...
@@ -406,14 +406,10 @@ struct Ligature
for
(
i
=
1
;
i
<
count
;
i
++
)
{
while
(
_hb_ot_layout_skip_mark
(
context
->
face
,
IN_CURINFO
(),
lookup_flag
,
NULL
))
_hb_buffer_add_output_glyph
(
buffer
,
IN_CURGLYPH
(),
i
-
1
,
lig_id
);
_hb_buffer_add_output_glyph
(
buffer
,
IN_CURGLYPH
(),
i
,
lig_id
);
(
buffer
->
in_pos
)
++
;
}
/* TODO We should possibly reassign lig_id and component for any
* components of a previous ligature that s now being removed as part of
* this ligature. */
}
return
true
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录