Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
0501573d
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看板
提交
0501573d
编写于
8月 10, 2011
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix const correctness in the API
上级
a21add6c
变更
8
隐藏空白更改
内联
并排
Showing
8 changed file
with
19 addition
and
19 deletion
+19
-19
src/hb-fallback-shape-private.hh
src/hb-fallback-shape-private.hh
+1
-1
src/hb-fallback-shape.cc
src/hb-fallback-shape.cc
+1
-1
src/hb-ot-shape.cc
src/hb-ot-shape.cc
+1
-1
src/hb-ot-shape.h
src/hb-ot-shape.h
+1
-1
src/hb-shape.cc
src/hb-shape.cc
+7
-7
src/hb-shape.h
src/hb-shape.h
+6
-6
src/hb-uniscribe-shape.cc
src/hb-uniscribe-shape.cc
+1
-1
src/hb-uniscribe.h
src/hb-uniscribe.h
+1
-1
未找到文件。
src/hb-fallback-shape-private.hh
浏览文件 @
0501573d
...
...
@@ -40,7 +40,7 @@ hb_fallback_shape (hb_font_t *font,
hb_buffer_t
*
buffer
,
const
hb_feature_t
*
features
,
unsigned
int
num_features
,
const
char
*
shaper_options
);
const
char
*
const
*
shaper_options
);
HB_END_DECLS
...
...
src/hb-fallback-shape.cc
浏览文件 @
0501573d
...
...
@@ -33,7 +33,7 @@ hb_fallback_shape (hb_font_t *font,
hb_buffer_t
*
buffer
,
const
hb_feature_t
*
features
,
unsigned
int
num_features
,
const
char
*
shaper_options
)
const
char
*
const
*
shaper_options
)
{
buffer
->
guess_properties
();
...
...
src/hb-ot-shape.cc
浏览文件 @
0501573d
...
...
@@ -433,7 +433,7 @@ hb_ot_shape (hb_font_t *font,
hb_buffer_t
*
buffer
,
const
hb_feature_t
*
features
,
unsigned
int
num_features
,
const
char
*
shaper_options
)
const
char
*
const
*
shaper_options
)
{
hb_ot_shape_plan_t
plan
;
...
...
src/hb-ot-shape.h
浏览文件 @
0501573d
...
...
@@ -39,7 +39,7 @@ hb_ot_shape (hb_font_t *font,
hb_buffer_t
*
buffer
,
const
hb_feature_t
*
features
,
unsigned
int
num_features
,
const
char
*
shaper_options
);
const
char
*
const
*
shaper_options
);
HB_END_DECLS
...
...
src/hb-shape.cc
浏览文件 @
0501573d
...
...
@@ -42,7 +42,7 @@ typedef hb_bool_t (*hb_shape_func_t) (hb_font_t *font,
hb_buffer_t
*
buffer
,
const
hb_feature_t
*
features
,
unsigned
int
num_features
,
const
char
*
shaper_options
);
const
char
*
const
*
shaper_options
);
#define HB_SHAPER_IMPLEMENT(name) {#name, hb_##name##_shape}
static
struct
hb_shaper_pair_t
{
...
...
@@ -110,12 +110,12 @@ hb_shape_list_shapers (void)
}
hb_bool_t
hb_shape_full
(
hb_font_t
*
font
,
hb_buffer_t
*
buffer
,
const
hb_feature_t
*
features
,
unsigned
int
num_features
,
const
char
*
shaper_options
,
const
char
*
*
shaper_list
)
hb_shape_full
(
hb_font_t
*
font
,
hb_buffer_t
*
buffer
,
const
hb_feature_t
*
features
,
unsigned
int
num_features
,
const
char
*
const
*
shaper_options
,
const
char
*
const
*
shaper_list
)
{
if
(
likely
(
!
shaper_list
))
{
for
(
unsigned
int
i
=
0
;
i
<
ARRAY_LENGTH
(
shapers
);
i
++
)
...
...
src/hb-shape.h
浏览文件 @
0501573d
...
...
@@ -49,12 +49,12 @@ hb_shape (hb_font_t *font,
unsigned
int
num_features
);
hb_bool_t
hb_shape_full
(
hb_font_t
*
font
,
hb_buffer_t
*
buffer
,
const
hb_feature_t
*
features
,
unsigned
int
num_features
,
const
char
*
shaper_options
,
const
char
*
*
shaper_list
);
hb_shape_full
(
hb_font_t
*
font
,
hb_buffer_t
*
buffer
,
const
hb_feature_t
*
features
,
unsigned
int
num_features
,
const
char
*
const
*
shaper_options
,
const
char
*
const
*
shaper_list
);
const
char
**
hb_shape_list_shapers
(
void
);
...
...
src/hb-uniscribe-shape.cc
浏览文件 @
0501573d
...
...
@@ -208,7 +208,7 @@ hb_uniscribe_shape (hb_font_t *font,
hb_buffer_t
*
buffer
,
const
hb_feature_t
*
features
,
unsigned
int
num_features
,
const
char
*
shaper_options
)
const
char
*
const
*
shaper_options
)
{
buffer
->
guess_properties
();
...
...
src/hb-uniscribe.h
浏览文件 @
0501573d
...
...
@@ -39,7 +39,7 @@ hb_uniscribe_shape (hb_font_t *font,
hb_buffer_t
*
buffer
,
const
hb_feature_t
*
features
,
unsigned
int
num_features
,
const
char
*
shaper_options
);
const
char
*
const
*
shaper_options
);
HB_END_DECLS
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录