Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
5e5eb057
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看板
提交
5e5eb057
编写于
5月 18, 2009
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[HB] Start GPOS!
上级
64e67f75
变更
5
展开全部
隐藏空白更改
内联
并排
Showing
5 changed file
with
936 addition
and
9 deletion
+936
-9
src/hb-ot-layout-gpos-private.h
src/hb-ot-layout-gpos-private.h
+915
-0
src/hb-ot-layout-gsub-private.h
src/hb-ot-layout-gsub-private.h
+0
-2
src/hb-ot-layout-private.h
src/hb-ot-layout-private.h
+14
-1
src/hb-ot-layout.cc
src/hb-ot-layout.cc
+3
-2
src/hb-ot-layout.h
src/hb-ot-layout.h
+4
-4
未找到文件。
src/hb-ot-layout-gpos-private.h
0 → 100644
浏览文件 @
5e5eb057
此差异已折叠。
点击以展开。
src/hb-ot-layout-gsub-private.h
浏览文件 @
5e5eb057
...
...
@@ -469,7 +469,6 @@ ASSERT_SIZE (LigatureSubst, 2);
static
inline
bool
substitute_lookup
(
LOOKUP_ARGS_DEF
,
unsigned
int
lookup_index
);
struct
ContextSubst
:
Context
{
inline
bool
substitute
(
LOOKUP_ARGS_DEF
)
const
{
...
...
@@ -478,7 +477,6 @@ struct ContextSubst : Context {
};
ASSERT_SIZE
(
ContextSubst
,
2
);
struct
ChainContextSubst
:
ChainContext
{
inline
bool
substitute
(
LOOKUP_ARGS_DEF
)
const
{
...
...
src/hb-ot-layout-private.h
浏览文件 @
5e5eb057
...
...
@@ -39,12 +39,25 @@ typedef unsigned int hb_ot_layout_class_t;
struct
_hb_ot_layout_t
{
const
struct
GDEF
*
gdef
;
const
struct
GSUB
*
gsub
;
const
struct
/*XXX*/
GSUB
GPOS
*
gpos
;
const
struct
GPOS
*
gpos
;
struct
{
unsigned
char
*
klasses
;
unsigned
int
len
;
}
new_gdef
;
/* TODO full-matrix transformation? */
struct
{
unsigned
int
x_ppem
,
y_ppem
;
hb_16dot16_t
x_scale
,
y_scale
;
hb_bool_t
dvi
;
hb_bool_t
r2l
;
unsigned
int
last
;
/* the last valid glyph--used with cursive positioning */
hb_position_t
anchor_x
;
/* the coordinates of the anchor point */
hb_position_t
anchor_y
;
/* of the last valid glyph */
}
gpos_info
;
};
...
...
src/hb-ot-layout.cc
浏览文件 @
5e5eb057
...
...
@@ -34,6 +34,7 @@
#include "hb-ot-layout-open-private.h"
#include "hb-ot-layout-gdef-private.h"
#include "hb-ot-layout-gsub-private.h"
#include "hb-ot-layout-gpos-private.h"
/* XXX */
#include "harfbuzz-buffer-private.h"
...
...
@@ -49,7 +50,7 @@ hb_ot_layout_create (void)
layout
->
gdef
=
&
Null
(
GDEF
);
layout
->
gsub
=
&
Null
(
GSUB
);
layout
->
gpos
=
&
/*XXX*/
Null
(
GSUB
GPOS
);
layout
->
gpos
=
&
Null
(
GPOS
);
return
layout
;
}
...
...
@@ -70,7 +71,7 @@ hb_ot_layout_create_for_data (const char *font_data,
layout
->
gdef
=
&
GDEF
::
get_for_data
(
font
.
get_table_data
(
face
.
get_table_by_tag
(
GDEF
::
Tag
)));
layout
->
gsub
=
&
GSUB
::
get_for_data
(
font
.
get_table_data
(
face
.
get_table_by_tag
(
GSUB
::
Tag
)));
layout
->
gpos
=
&
/*XXX*/
GSUBGPOS
::
get_for_data
(
font
.
get_table_data
(
face
.
get_table_by_tag
(
/*XXX*/
GSUBGPOS
::
GPOS
Tag
)));
layout
->
gpos
=
&
GPOS
::
get_for_data
(
font
.
get_table_data
(
face
.
get_table_by_tag
(
GPOS
::
Tag
)));
return
layout
;
}
...
...
src/hb-ot-layout.h
浏览文件 @
5e5eb057
...
...
@@ -124,10 +124,10 @@ hb_ot_layout_table_get_feature_tag (hb_ot_layout_t *layout,
unsigned
int
feature_index
);
hb_bool_t
hb_ot_layout_table_find_
script
(
hb_ot_layout_t
*
layout
,
hb_ot_layout_table_type_t
table_type
,
hb_tag_t
feature_tag
,
unsigned
int
*
feature_index
);
hb_ot_layout_table_find_
feature
(
hb_ot_layout_t
*
layout
,
hb_ot_layout_table_type_t
table_type
,
hb_tag_t
feature_tag
,
unsigned
int
*
feature_index
);
unsigned
int
hb_ot_layout_table_get_lookup_count
(
hb_ot_layout_t
*
layout
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录