Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
3608a684
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看板
提交
3608a684
编写于
5月 12, 2014
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[ot] Hook up cmap table to hb_ot_font_funcs()
上级
c8a47452
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
26 addition
and
17 deletion
+26
-17
src/hb-ot-cmap-table.hh
src/hb-ot-cmap-table.hh
+7
-3
src/hb-ot-font.cc
src/hb-ot-font.cc
+19
-14
未找到文件。
src/hb-ot-cmap-table.hh
浏览文件 @
3608a684
...
@@ -193,14 +193,18 @@ struct cmap
...
@@ -193,14 +193,18 @@ struct cmap
{
{
static
const
hb_tag_t
tableTag
=
HB_OT_TAG_cmap
;
static
const
hb_tag_t
tableTag
=
HB_OT_TAG_cmap
;
inline
unsigned
int
find_subtable
(
unsigned
int
platform_id
,
inline
const
CmapSubtable
*
find_subtable
(
unsigned
int
platform_id
,
unsigned
int
encoding_id
)
const
unsigned
int
encoding_id
)
const
{
{
EncodingRecord
key
;
EncodingRecord
key
;
key
.
platformID
.
set
(
platform_id
);
key
.
platformID
.
set
(
platform_id
);
key
.
encodingID
.
set
(
encoding_id
);
key
.
encodingID
.
set
(
encoding_id
);
return
encodingRecord
.
search
(
key
);
int
result
=
encodingRecord
.
search
(
key
);
if
(
result
==
-
1
)
return
NULL
;
return
&
(
this
+
encodingRecord
[
result
].
subtable
);
}
}
inline
bool
sanitize
(
hb_sanitize_context_t
*
c
)
{
inline
bool
sanitize
(
hb_sanitize_context_t
*
c
)
{
...
...
src/hb-ot-font.cc
浏览文件 @
3608a684
...
@@ -42,6 +42,9 @@ struct hb_ot_font_t
...
@@ -42,6 +42,9 @@ struct hb_ot_font_t
unsigned
int
num_hmetrics
;
unsigned
int
num_hmetrics
;
const
OT
::
hmtx
*
hmtx
;
const
OT
::
hmtx
*
hmtx
;
hb_blob_t
*
hmtx_blob
;
hb_blob_t
*
hmtx_blob
;
const
OT
::
CmapSubtable
*
cmap
;
hb_blob_t
*
cmap_blob
;
};
};
...
@@ -69,15 +72,25 @@ _hb_ot_font_create (hb_font_t *font)
...
@@ -69,15 +72,25 @@ _hb_ot_font_create (hb_font_t *font)
free
(
ot_font
);
free
(
ot_font
);
return
NULL
;
return
NULL
;
}
}
ot_font
->
hmtx
=
OT
::
Sanitizer
<
OT
::
hmtx
>::
lock_instance
(
ot_font
->
hmtx_blob
);
ot_font
->
hmtx
=
OT
::
Sanitizer
<
OT
::
hmtx
>::
lock_instance
(
ot_font
->
hmtx_blob
);
ot_font
->
cmap_blob
=
OT
::
Sanitizer
<
OT
::
cmap
>::
sanitize
(
font
->
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
;
if
(
!
subtable
)
subtable
=
cmap
->
find_subtable
(
0
,
3
);
if
(
!
subtable
)
subtable
=
cmap
->
find_subtable
(
3
,
1
);
if
(
!
subtable
)
subtable
=
&
OT
::
Null
(
OT
::
CmapSubtable
);
ot_font
->
cmap
=
subtable
;
return
ot_font
;
return
ot_font
;
}
}
static
void
static
void
_hb_ot_font_destroy
(
hb_ot_font_t
*
ot_font
)
_hb_ot_font_destroy
(
hb_ot_font_t
*
ot_font
)
{
{
hb_blob_destroy
(
ot_font
->
cmap_blob
);
hb_blob_destroy
(
ot_font
->
hmtx_blob
);
hb_blob_destroy
(
ot_font
->
hmtx_blob
);
free
(
ot_font
);
free
(
ot_font
);
...
@@ -93,24 +106,16 @@ hb_ot_get_glyph (hb_font_t *font HB_UNUSED,
...
@@ -93,24 +106,16 @@ hb_ot_get_glyph (hb_font_t *font HB_UNUSED,
void
*
user_data
HB_UNUSED
)
void
*
user_data
HB_UNUSED
)
{
{
#if 0
const
hb_ot_font_t
*
ot_font
=
(
const
hb_ot_font_t
*
)
font_data
;
FT_Face ft_face = (FT_Face) font_data;
#ifdef HAVE_FT_FACE_GETCHARVARIANTINDEX
if
(
unlikely
(
variation_selector
))
if (unlikely (variation_selector)) {
return
false
;
*glyph = FT_Face_GetCharVariantIndex (ft_face, unicode, variation_selector);
return *glyph != 0;
}
#endif
*glyph = FT_Get_Char_Index (ft_face, unicode);
return
ot_font
->
cmap
->
get_glyph
(
unicode
,
glyph
);
return *glyph != 0;
#endif
return
true
;
}
}
static
hb_position_t
static
hb_position_t
hb_ot_get_glyph_h_advance
(
hb_font_t
*
font
,
hb_ot_get_glyph_h_advance
(
hb_font_t
*
font
HB_UNUSED
,
void
*
font_data
,
void
*
font_data
,
hb_codepoint_t
glyph
,
hb_codepoint_t
glyph
,
void
*
user_data
HB_UNUSED
)
void
*
user_data
HB_UNUSED
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录