Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
d84932ba
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看板
提交
d84932ba
编写于
6月 19, 2019
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[config] add HB_NO_OT_SHAPE_FRACTIONS, enabled in HB_LEAN
Part of
https://github.com/harfbuzz/harfbuzz/issues/1652
上级
eaf4a736
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
20 addition
and
0 deletion
+20
-0
src/hb-config.hh
src/hb-config.hh
+1
-0
src/hb-ot-shape.cc
src/hb-ot-shape.cc
+9
-0
src/hb-ot-shape.hh
src/hb-ot-shape.hh
+10
-0
未找到文件。
src/hb-config.hh
浏览文件 @
d84932ba
...
...
@@ -65,6 +65,7 @@
#define HB_NO_NAME
#define HB_NO_OPEN
#define HB_NO_SETLOCALE
#define HB_NO_OT_SHAPE_FRACTIONS
#define HB_NO_SUBSET_LAYOUT
#endif
...
...
src/hb-ot-shape.cc
浏览文件 @
d84932ba
...
...
@@ -101,10 +101,13 @@ hb_ot_shape_planner_t::compile (hb_ot_shape_plan_t &plan,
if
(
apply_morx
)
aat_map
.
compile
(
plan
.
aat_map
);
#ifndef HB_NO_OT_SHAPE_FRACTIONS
plan
.
frac_mask
=
plan
.
map
.
get_1_mask
(
HB_TAG
(
'f'
,
'r'
,
'a'
,
'c'
));
plan
.
numr_mask
=
plan
.
map
.
get_1_mask
(
HB_TAG
(
'n'
,
'u'
,
'm'
,
'r'
));
plan
.
dnom_mask
=
plan
.
map
.
get_1_mask
(
HB_TAG
(
'd'
,
'n'
,
'o'
,
'm'
));
plan
.
has_frac
=
plan
.
frac_mask
||
(
plan
.
numr_mask
&&
plan
.
dnom_mask
);
#endif
plan
.
rtlm_mask
=
plan
.
map
.
get_1_mask
(
HB_TAG
(
'r'
,
't'
,
'l'
,
'm'
));
hb_tag_t
kern_tag
=
HB_DIRECTION_IS_HORIZONTAL
(
props
.
direction
)
?
HB_TAG
(
'k'
,
'e'
,
'r'
,
'n'
)
:
HB_TAG
(
'v'
,
'k'
,
'r'
,
'n'
);
...
...
@@ -309,10 +312,12 @@ hb_ot_shape_collect_features (hb_ot_shape_planner_t *planner,
break
;
}
#ifndef HB_NO_OT_SHAPE_FRACTIONS
/* Automatic fractions. */
map
->
add_feature
(
HB_TAG
(
'f'
,
'r'
,
'a'
,
'c'
));
map
->
add_feature
(
HB_TAG
(
'n'
,
'u'
,
'm'
,
'r'
));
map
->
add_feature
(
HB_TAG
(
'd'
,
'n'
,
'o'
,
'm'
));
#endif
/* Random! */
map
->
enable_feature
(
HB_TAG
(
'r'
,
'a'
,
'n'
,
'd'
),
F_RANDOM
,
HB_OT_MAP_MAX_VALUE
);
...
...
@@ -590,6 +595,10 @@ hb_ot_mirror_chars (const hb_ot_shape_context_t *c)
static
inline
void
hb_ot_shape_setup_masks_fraction
(
const
hb_ot_shape_context_t
*
c
)
{
#ifdef HB_NO_OT_SHAPE_FRACTIONS
return
;
#endif
if
(
!
(
c
->
buffer
->
scratch_flags
&
HB_BUFFER_SCRATCH_FLAG_HAS_NON_ASCII
)
||
!
c
->
plan
->
has_frac
)
return
;
...
...
src/hb-ot-shape.hh
浏览文件 @
d84932ba
...
...
@@ -65,14 +65,24 @@ struct hb_ot_shape_plan_t
hb_ot_map_t
map
;
hb_aat_map_t
aat_map
;
const
void
*
data
;
#ifndef HB_NO_OT_SHAPE_FRACTIONS
hb_mask_t
frac_mask
,
numr_mask
,
dnom_mask
;
#else
static
constexpr
hb_mask_t
frac_mask
=
0
;
static
constexpr
hb_mask_t
numr_mask
=
0
;
static
constexpr
hb_mask_t
dnom_mask
=
0
;
#endif
hb_mask_t
rtlm_mask
;
hb_mask_t
kern_mask
;
hb_mask_t
trak_mask
;
bool
requested_kerning
:
1
;
bool
requested_tracking
:
1
;
#ifndef HB_NO_OT_SHAPE_FRACTIONS
bool
has_frac
:
1
;
#else
static
constexpr
bool
has_frac
=
false
;
#endif
bool
has_gpos_mark
:
1
;
bool
zero_marks
:
1
;
bool
fallback_glyph_classes
:
1
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录