Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
d088ccaf
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看板
提交
d088ccaf
编写于
9月 25, 2014
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[ot-font] Minor
上级
d7c160a1
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
12 addition
and
11 deletion
+12
-11
src/hb-ot-font.cc
src/hb-ot-font.cc
+12
-11
未找到文件。
src/hb-ot-font.cc
浏览文件 @
d088ccaf
...
...
@@ -35,7 +35,7 @@
#include "hb-ot-hmtx-table.hh"
struct
metrics_accel
_t
struct
hb_ot_face_metrics_accelerator
_t
{
unsigned
int
num_metrics
;
unsigned
int
num_advances
;
...
...
@@ -43,19 +43,19 @@ struct metrics_accel_t
const
OT
::
_mtx
*
table
;
hb_blob_t
*
blob
;
inline
void
init
(
hb_f
ont_t
*
font
,
inline
void
init
(
hb_f
ace_t
*
face
,
hb_tag_t
_hea_tag
,
hb_tag_t
_mtx_tag
,
unsigned
int
default_advance
)
{
this
->
default_advance
=
default_advance
;
this
->
num_metrics
=
f
ont
->
f
ace
->
get_num_glyphs
();
this
->
num_metrics
=
face
->
get_num_glyphs
();
hb_blob_t
*
_hea_blob
=
OT
::
Sanitizer
<
OT
::
_hea
>::
sanitize
(
f
ont
->
f
ace
->
reference_table
(
_hea_tag
));
hb_blob_t
*
_hea_blob
=
OT
::
Sanitizer
<
OT
::
_hea
>::
sanitize
(
face
->
reference_table
(
_hea_tag
));
const
OT
::
_hea
*
_hea
=
OT
::
Sanitizer
<
OT
::
_hea
>::
lock_instance
(
_hea_blob
);
this
->
num_advances
=
_hea
->
numberOfLongMetrics
;
hb_blob_destroy
(
_hea_blob
);
this
->
blob
=
OT
::
Sanitizer
<
OT
::
_mtx
>::
sanitize
(
f
ont
->
f
ace
->
reference_table
(
_mtx_tag
));
this
->
blob
=
OT
::
Sanitizer
<
OT
::
_mtx
>::
sanitize
(
face
->
reference_table
(
_mtx_tag
));
if
(
unlikely
(
!
this
->
num_advances
||
2
*
(
this
->
num_advances
+
this
->
num_metrics
)
<
hb_blob_get_length
(
this
->
blob
)))
{
...
...
@@ -93,8 +93,8 @@ struct metrics_accel_t
struct
hb_ot_font_t
{
metrics_accel
_t
h_metrics
;
metrics_accel
_t
v_metrics
;
hb_ot_face_metrics_accelerator
_t
h_metrics
;
hb_ot_face_metrics_accelerator
_t
v_metrics
;
const
OT
::
CmapSubtable
*
cmap
;
const
OT
::
CmapSubtable
*
cmap_uvs
;
...
...
@@ -106,17 +106,18 @@ static hb_ot_font_t *
_hb_ot_font_create
(
hb_font_t
*
font
)
{
hb_ot_font_t
*
ot_font
=
(
hb_ot_font_t
*
)
calloc
(
1
,
sizeof
(
hb_ot_font_t
));
hb_face_t
*
face
=
font
->
face
;
if
(
unlikely
(
!
ot_font
))
return
NULL
;
unsigned
int
upem
=
f
ont
->
f
ace
->
get_upem
();
unsigned
int
upem
=
face
->
get_upem
();
ot_font
->
h_metrics
.
init
(
f
ont
,
HB_OT_TAG_hhea
,
HB_OT_TAG_hmtx
,
upem
>>
1
);
ot_font
->
h_metrics
.
init
(
f
ace
,
HB_OT_TAG_hhea
,
HB_OT_TAG_hmtx
,
upem
>>
1
);
/* TODO Can we do this lazily? */
ot_font
->
v_metrics
.
init
(
f
ont
,
HB_OT_TAG_vhea
,
HB_OT_TAG_vmtx
,
upem
);
ot_font
->
v_metrics
.
init
(
f
ace
,
HB_OT_TAG_vhea
,
HB_OT_TAG_vmtx
,
upem
);
ot_font
->
cmap_blob
=
OT
::
Sanitizer
<
OT
::
cmap
>::
sanitize
(
f
ont
->
f
ace
->
reference_table
(
HB_OT_TAG_cmap
));
ot_font
->
cmap_blob
=
OT
::
Sanitizer
<
OT
::
cmap
>::
sanitize
(
face
->
reference_table
(
HB_OT_TAG_cmap
));
const
OT
::
cmap
*
cmap
=
OT
::
Sanitizer
<
OT
::
cmap
>::
lock_instance
(
ot_font
->
cmap_blob
);
const
OT
::
CmapSubtable
*
subtable
=
NULL
;
const
OT
::
CmapSubtable
*
subtable_uvs
=
NULL
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录