Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
30f18039
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看板
提交
30f18039
编写于
10月 26, 2018
作者:
E
Ebrahim Byagowi
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[svg] Rename _svg_create_blob to _glyph_reference_blob_svg
上级
5cb1ce86
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
9 addition
and
7 deletion
+9
-7
docs/harfbuzz-sections.txt
docs/harfbuzz-sections.txt
+2
-0
src/dump-emoji.cc
src/dump-emoji.cc
+1
-1
src/hb-ot-color.cc
src/hb-ot-color.cc
+2
-2
src/hb-ot-color.h
src/hb-ot-color.h
+1
-1
test/api/test-ot-color.c
test/api/test-ot-color.c
+3
-3
未找到文件。
docs/harfbuzz-sections.txt
浏览文件 @
30f18039
...
...
@@ -460,8 +460,10 @@ HB_OT_H_IN
<SECTION>
<FILE>hb-ot-color</FILE>
hb_ot_color_glyph_get_layers
hb_ot_color_glyph_reference_blob_svg
hb_ot_color_has_layers
hb_ot_color_has_palettes
hb_ot_color_has_svg
hb_ot_color_layer_t
hb_ot_color_palette_color_get_name_id
hb_ot_color_palette_flags_t
...
...
src/dump-emoji.cc
浏览文件 @
30f18039
...
...
@@ -75,7 +75,7 @@ svg_dump (hb_face_t *face)
for
(
unsigned
int
glyph_id
=
0
;
glyph_id
<
glyph_count
;
glyph_id
++
)
{
hb_blob_t
*
blob
=
hb_ot_color_glyph_
svg_create_blob
(
face
,
glyph_id
);
hb_blob_t
*
blob
=
hb_ot_color_glyph_
reference_blob_svg
(
face
,
glyph_id
);
if
(
hb_blob_get_length
(
blob
)
==
0
)
continue
;
...
...
src/hb-ot-color.cc
浏览文件 @
30f18039
...
...
@@ -259,7 +259,7 @@ hb_ot_color_has_svg (hb_face_t *face)
}
/**
* hb_ot_color_glyph_
svg_create_blob
:
* hb_ot_color_glyph_
reference_blob_svg
:
* @face:
* @glyph:
*
...
...
@@ -268,7 +268,7 @@ hb_ot_color_has_svg (hb_face_t *face)
* Since: REPLACEME
*/
hb_blob_t
*
hb_ot_color_glyph_
svg_create_blob
(
hb_face_t
*
face
,
hb_codepoint_t
glyph
)
hb_ot_color_glyph_
reference_blob_svg
(
hb_face_t
*
face
,
hb_codepoint_t
glyph
)
{
return
_get_svg
(
face
).
reference_blob_for_glyph
(
glyph
);
}
src/hb-ot-color.h
浏览文件 @
30f18039
...
...
@@ -119,7 +119,7 @@ HB_EXTERN hb_bool_t
hb_ot_color_has_svg
(
hb_face_t
*
face
);
HB_EXTERN
hb_blob_t
*
hb_ot_color_glyph_
svg_create_blob
(
hb_face_t
*
face
,
hb_codepoint_t
glyph
);
hb_ot_color_glyph_
reference_blob_svg
(
hb_face_t
*
face
,
hb_codepoint_t
glyph
);
HB_END_DECLS
...
...
test/api/test-ot-color.c
浏览文件 @
30f18039
...
...
@@ -377,10 +377,10 @@ test_hb_ot_color_svg (void)
{
hb_blob_t
*
blob
;
blob
=
hb_ot_color_glyph_
svg_create_blob
(
svg
,
0
);
blob
=
hb_ot_color_glyph_
reference_blob_svg
(
svg
,
0
);
g_assert
(
hb_blob_get_length
(
blob
)
==
0
);
blob
=
hb_ot_color_glyph_
svg_create_blob
(
svg
,
1
);
blob
=
hb_ot_color_glyph_
reference_blob_svg
(
svg
,
1
);
unsigned
int
length
;
const
char
*
data
=
hb_blob_get_data
(
blob
,
&
length
);
g_assert_cmpuint
(
length
,
==
,
146
);
...
...
@@ -388,7 +388,7 @@ test_hb_ot_color_svg (void)
g_assert
(
strncmp
(
data
+
140
,
"</svg>"
,
5
)
==
0
);
hb_blob_destroy
(
blob
);
blob
=
hb_ot_color_glyph_
svg_create_blob
(
empty
,
0
);
blob
=
hb_ot_color_glyph_
reference_blob_svg
(
empty
,
0
);
g_assert
(
hb_blob_get_length
(
blob
)
==
0
);
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录