Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
defc45be
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看板
提交
defc45be
编写于
5月 10, 2011
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[API] Add hb_font_create_sub_font() and hb_font_get_parent()
Not quite useful just yet.
上级
11bb8fe7
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
45 addition
and
4 deletion
+45
-4
src/hb-font-private.hh
src/hb-font-private.hh
+1
-0
src/hb-font.cc
src/hb-font.cc
+38
-3
src/hb-font.h
src/hb-font.h
+5
-0
src/hb-unicode.h
src/hb-unicode.h
+1
-1
未找到文件。
src/hb-font-private.hh
浏览文件 @
defc45be
...
...
@@ -82,6 +82,7 @@ struct _hb_font_t {
hb_bool_t
immutable
;
hb_font_t
*
parent
;
hb_face_t
*
face
;
int
x_scale
;
...
...
src/hb-font.cc
浏览文件 @
defc45be
...
...
@@ -83,7 +83,7 @@ hb_font_get_kerning_nil (hb_font_t *font HB_UNUSED,
static
hb_font_funcs_t
_hb_font_funcs_nil
=
{
HB_OBJECT_HEADER_STATIC
,
TRUE
,
/* immutable */
TRUE
,
/* immutable */
{
hb_font_get_glyph_nil
,
hb_font_get_glyph_advance_nil
,
...
...
@@ -448,8 +448,9 @@ hb_face_get_upem (hb_face_t *face)
static
hb_font_t
_hb_font_nil
=
{
HB_OBJECT_HEADER_STATIC
,
TRUE
,
/* immutable */
TRUE
,
/* immutable */
NULL
,
/* parent */
&
_hb_face_nil
,
0
,
/* x_scale */
...
...
@@ -458,7 +459,7 @@ static hb_font_t _hb_font_nil = {
0
,
/* x_ppem */
0
,
/* y_ppem */
NULL
,
/* klass */
&
_hb_font_funcs_nil
,
/* klass */
NULL
,
/* user_data */
NULL
/* destroy */
};
...
...
@@ -481,6 +482,34 @@ hb_font_create (hb_face_t *face)
return
font
;
}
hb_font_t
*
hb_font_create_sub_font
(
hb_font_t
*
parent
)
{
if
(
unlikely
(
!
parent
))
return
&
_hb_font_nil
;
hb_font_t
*
font
=
hb_font_create
(
parent
->
face
);
if
(
unlikely
(
hb_object_is_inert
(
font
)))
return
font
;
hb_font_make_immutable
(
parent
);
font
->
parent
=
hb_font_reference
(
parent
);
font
->
x_scale
=
parent
->
x_scale
;
font
->
y_scale
=
parent
->
y_scale
;
font
->
x_ppem
=
parent
->
x_ppem
;
font
->
y_ppem
=
parent
->
y_ppem
;
/* We can safely copy user_data from parent since we hold a reference
* onto it and it's immutable. We should not copy the destroy notifiers
* though. */
font
->
klass
=
hb_font_funcs_reference
(
parent
->
klass
);
font
->
user_data
=
parent
->
user_data
;
return
font
;
}
hb_font_t
*
hb_font_reference
(
hb_font_t
*
font
)
{
...
...
@@ -492,6 +521,7 @@ hb_font_destroy (hb_font_t *font)
{
if
(
!
hb_object_destroy
(
font
))
return
;
hb_font_destroy
(
font
->
parent
);
hb_face_destroy
(
font
->
face
);
hb_font_funcs_destroy
(
font
->
klass
);
if
(
font
->
destroy
)
...
...
@@ -531,6 +561,11 @@ hb_font_is_immutable (hb_font_t *font)
return
font
->
immutable
;
}
hb_font_t
*
hb_font_get_parent
(
hb_font_t
*
font
)
{
return
font
->
parent
;
}
hb_face_t
*
hb_font_get_face
(
hb_font_t
*
font
)
...
...
src/hb-font.h
浏览文件 @
defc45be
...
...
@@ -208,6 +208,9 @@ hb_font_get_kerning (hb_font_t *font,
hb_font_t
*
hb_font_create
(
hb_face_t
*
face
);
hb_font_t
*
hb_font_create_sub_font
(
hb_font_t
*
parent
);
hb_font_t
*
hb_font_reference
(
hb_font_t
*
font
);
...
...
@@ -231,6 +234,8 @@ hb_font_make_immutable (hb_font_t *font);
hb_bool_t
hb_font_is_immutable
(
hb_font_t
*
font
);
hb_font_t
*
hb_font_get_parent
(
hb_font_t
*
font
);
hb_face_t
*
hb_font_get_face
(
hb_font_t
*
font
);
...
...
src/hb-unicode.h
浏览文件 @
defc45be
...
...
@@ -51,7 +51,7 @@ hb_unicode_funcs_get_default (void);
hb_unicode_funcs_t
*
hb_unicode_funcs_create
(
hb_unicode_funcs_t
*
parent
_funcs
);
hb_unicode_funcs_create
(
hb_unicode_funcs_t
*
parent
);
hb_unicode_funcs_t
*
hb_unicode_funcs_reference
(
hb_unicode_funcs_t
*
ufuncs
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录