Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
2157e56b
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看板
提交
2157e56b
编写于
10月 15, 2018
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[name] Start implementing public API infrastructure
上级
0bf93ec0
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
68 addition
and
3 deletion
+68
-3
src/hb-ot-face.cc
src/hb-ot-face.cc
+1
-0
src/hb-ot-face.hh
src/hb-ot-face.hh
+4
-3
src/hb-ot-name-table.hh
src/hb-ot-name-table.hh
+60
-0
src/hb-ot-name.h
src/hb-ot-name.h
+3
-0
未找到文件。
src/hb-ot-face.cc
浏览文件 @
2157e56b
...
...
@@ -30,6 +30,7 @@
#include "hb-ot-glyf-table.hh"
#include "hb-ot-hmtx-table.hh"
#include "hb-ot-kern-table.hh"
#include "hb-ot-name-table.hh"
#include "hb-ot-post-table.hh"
#include "hb-ot-color-cbdt-table.hh"
#include "hb-ot-layout-gdef-table.hh"
...
...
src/hb-ot-face.hh
浏览文件 @
2157e56b
...
...
@@ -45,6 +45,9 @@
* This is as good as any place. */
#define HB_OT_TABLES \
/* OpenType shaping. */
\
HB_OT_ACCELERATOR(OT, GDEF) \
HB_OT_ACCELERATOR(OT, GSUB) \
HB_OT_ACCELERATOR(OT, GPOS) \
HB_OT_TABLE(OT, JSTF) \
HB_OT_TABLE(OT, BASE) \
/* AAT shaping. */
\
...
...
@@ -59,13 +62,11 @@
/* OpenType math. */
\
HB_OT_TABLE(OT, MATH) \
/* OpenType fundamentals. */
\
HB_OT_ACCELERATOR(OT, GDEF) \
HB_OT_ACCELERATOR(OT, GSUB) \
HB_OT_ACCELERATOR(OT, GPOS) \
HB_OT_ACCELERATOR(OT, cmap) \
HB_OT_ACCELERATOR(OT, hmtx) \
HB_OT_ACCELERATOR(OT, vmtx) \
HB_OT_ACCELERATOR(OT, post) \
HB_OT_ACCELERATOR(OT, name) \
HB_OT_ACCELERATOR(OT, kern) \
HB_OT_ACCELERATOR(OT, glyf) \
HB_OT_TABLE(OT, VORG) \
...
...
src/hb-ot-name-table.hh
浏览文件 @
2157e56b
...
...
@@ -58,6 +58,13 @@ struct NameRecord
return
0
;
}
inline
bool
supported
(
void
)
const
{
return
platformID
==
0
||
platformID
==
3
;
/* TODO Add Apple MacRoman (0:1). */
}
inline
bool
sanitize
(
hb_sanitize_context_t
*
c
,
const
void
*
base
)
const
{
TRACE_SANITIZE
(
this
);
...
...
@@ -75,6 +82,18 @@ struct NameRecord
DEFINE_SIZE_STATIC
(
12
);
};
static
int
_hb_ot_name_entry_cmp
(
const
void
*
pa
,
const
void
*
pb
)
{
const
hb_ot_name_entry_t
*
a
=
(
const
hb_ot_name_entry_t
*
)
pa
;
const
hb_ot_name_entry_t
*
b
=
(
const
hb_ot_name_entry_t
*
)
pb
;
if
(
a
->
name_id
!=
b
->
name_id
)
return
a
->
name_id
<
b
->
name_id
?
-
1
:
+
1
;
if
(
a
->
index
!=
b
->
index
)
return
a
->
index
<
b
->
index
?
-
1
:
+
1
;
return
0
;
}
struct
name
{
static
const
hb_tag_t
tableTag
=
HB_OT_TAG_name
;
...
...
@@ -122,6 +141,46 @@ struct name
sanitize_records
(
c
));
}
struct
accelerator_t
{
inline
void
init
(
hb_face_t
*
face
)
{
this
->
blob
=
hb_sanitize_context_t
().
reference_table
<
name
>
(
face
);
const
name
*
table
=
this
->
blob
->
as
<
name
>
();
const
hb_array_t
<
NameRecord
>
&
all_names
=
hb_array_t
<
NameRecord
>
(
table
->
nameRecordZ
.
arrayZ
,
table
->
count
);
this
->
names
.
init
();
for
(
unsigned
int
i
=
0
;
i
<
all_names
.
len
;
i
++
)
{
if
(
!
all_names
[
i
].
supported
())
continue
;
unsigned
int
name_id
=
all_names
[
i
].
nameID
;
hb_language_t
language
=
HB_LANGUAGE_INVALID
;
/* XXX */
hb_ot_name_entry_t
entry
=
{
name_id
,
i
,
language
};
this
->
names
.
push
(
entry
);
}
this
->
names
.
qsort
(
_hb_ot_name_entry_cmp
);
/* Walk and pick best... */
}
inline
void
fini
(
void
)
{
this
->
names
.
fini
();
hb_blob_destroy
(
this
->
blob
);
}
private:
hb_blob_t
*
blob
;
hb_vector_t
<
hb_ot_name_entry_t
>
names
;
unsigned
int
names_count
;
};
/* We only implement format 0 for now. */
HBUINT16
format
;
/* Format selector (=0/1). */
HBUINT16
count
;
/* Number of name records. */
...
...
@@ -132,6 +191,7 @@ struct name
DEFINE_SIZE_ARRAY
(
6
,
nameRecordZ
);
};
struct
name_accelerator_t
:
name
::
accelerator_t
{};
}
/* namespace OT */
...
...
src/hb-ot-name.h
浏览文件 @
2157e56b
...
...
@@ -74,6 +74,9 @@ hb_ot_name_get_utf32 (hb_face_t *face,
typedef
struct
hb_ot_name_entry_t
{
hb_name_id_t
name_id
;
/*< private >*/
unsigned
int
index
;
/*< public >*/
hb_language_t
language
;
}
hb_ot_name_entry_t
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录