Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
d9e166f7
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看板
提交
d9e166f7
编写于
10月 18, 2017
作者:
K
Khaled Hosny
提交者:
Behdad Esfahbod
10月 25, 2017
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[ot-font] Implement hb_ot_get_glyph_from_name
上级
9d4d2fb9
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
79 addition
and
1 deletion
+79
-1
src/hb-ot-font.cc
src/hb-ot-font.cc
+21
-1
src/hb-ot-post-table.hh
src/hb-ot-post-table.hh
+58
-0
未找到文件。
src/hb-ot-font.cc
浏览文件 @
d9e166f7
...
...
@@ -327,6 +327,15 @@ struct hb_ot_face_post_accelerator_t
return
this
->
post
->
get_glyph_name
(
glyph
,
name
,
size
,
this
->
post_len
);
}
inline
bool
get_glyph_from_name
(
const
char
*
name
,
int
len
,
hb_codepoint_t
*
glyph
)
const
{
if
(
unlikely
(
!
name
)
||
unlikely
(
!
len
))
return
false
;
return
this
->
post
->
get_glyph_from_name
(
name
,
len
,
glyph
,
this
->
post_len
);
}
};
typedef
bool
(
*
hb_cmap_get_glyph_func_t
)
(
const
void
*
obj
,
...
...
@@ -577,6 +586,17 @@ hb_ot_get_glyph_name (hb_font_t *font HB_UNUSED,
return
ot_font
->
post
->
get_glyph_name
(
glyph
,
name
,
size
);
}
static
hb_bool_t
hb_ot_get_glyph_from_name
(
hb_font_t
*
font
HB_UNUSED
,
void
*
font_data
,
const
char
*
name
,
int
len
,
hb_codepoint_t
*
glyph
,
void
*
user_data
HB_UNUSED
)
{
const
hb_ot_font_t
*
ot_font
=
(
const
hb_ot_font_t
*
)
font_data
;
return
ot_font
->
post
->
get_glyph_from_name
(
name
,
len
,
glyph
);
}
static
hb_bool_t
hb_ot_get_font_h_extents
(
hb_font_t
*
font
HB_UNUSED
,
void
*
font_data
,
...
...
@@ -638,7 +658,7 @@ retry:
hb_font_funcs_set_glyph_extents_func
(
funcs
,
hb_ot_get_glyph_extents
,
nullptr
,
nullptr
);
//hb_font_funcs_set_glyph_contour_point_func (funcs, hb_ot_get_glyph_contour_point, nullptr, nullptr); TODO
hb_font_funcs_set_glyph_name_func
(
funcs
,
hb_ot_get_glyph_name
,
nullptr
,
nullptr
);
//hb_font_funcs_set_glyph_from_name_func (funcs, hb_ot_get_glyph_from_name, nullptr, nullptr); TODO
hb_font_funcs_set_glyph_from_name_func
(
funcs
,
hb_ot_get_glyph_from_name
,
nullptr
,
nullptr
);
hb_font_funcs_make_immutable
(
funcs
);
...
...
src/hb-ot-post-table.hh
浏览文件 @
d9e166f7
...
...
@@ -173,6 +173,64 @@ struct post
return
false
;
}
inline
bool
get_glyph_from_name
(
const
char
*
name
,
int
len
,
hb_codepoint_t
*
glyph
,
unsigned
int
blob_len
)
const
{
if
(
len
<
0
)
len
=
strlen
(
name
);
if
(
version
.
to_int
()
==
0x00010000
)
{
for
(
int
i
=
0
;
i
<
NUM_FORMAT1_NAMES
;
i
++
)
{
if
(
strncmp
(
name
,
format1_names
[
i
],
len
)
==
0
)
{
*
glyph
=
i
;
return
true
;
}
}
return
false
;
}
if
(
version
.
to_int
()
==
0x00020000
)
{
const
postV2Tail
&
v2
=
StructAfter
<
postV2Tail
>
(
*
this
);
unsigned
int
offset
=
min_size
+
v2
.
min_size
+
2
*
v2
.
numberOfGlyphs
;
char
*
data
=
(
char
*
)
this
+
offset
;
for
(
hb_codepoint_t
gid
=
0
;
gid
<
v2
.
numberOfGlyphs
;
gid
++
)
{
unsigned
int
index
=
v2
.
glyphNameIndex
[
gid
];
if
(
index
>=
NUM_FORMAT1_NAMES
)
{
for
(
unsigned
int
i
=
0
;
data
<
(
char
*
)
this
+
blob_len
;
i
++
)
{
unsigned
int
name_length
=
data
[
0
];
unsigned
int
remaining
=
(
char
*
)
this
+
blob_len
-
data
-
1
;
name_length
=
MIN
(
name_length
,
remaining
);
if
(
name_length
==
len
&&
strncmp
(
name
,
data
+
1
,
len
)
==
0
)
{
*
glyph
=
gid
;
return
true
;
}
data
+=
name_length
+
1
;
}
return
false
;
}
else
if
(
strncmp
(
name
,
format1_names
[
index
],
len
)
==
0
)
{
*
glyph
=
gid
;
return
true
;
}
}
return
false
;
}
return
false
;
}
public:
FixedVersion
<>
version
;
/* 0x00010000 for version 1.0
* 0x00020000 for version 2.0
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录