Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
d1f29908
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看板
提交
d1f29908
编写于
8月 31, 2018
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[subset] Add hb_subset_context_t<>
上级
aba0a945
变更
9
隐藏空白更改
内联
并排
Showing
9 changed file
with
31 addition
and
6 deletion
+31
-6
src/hb-open-type.hh
src/hb-open-type.hh
+1
-0
src/hb-ot-cmap-table.hh
src/hb-ot-cmap-table.hh
+0
-1
src/hb-ot-hdmx-table.hh
src/hb-ot-hdmx-table.hh
+0
-1
src/hb-ot-hmtx-table.hh
src/hb-ot-hmtx-table.hh
+0
-1
src/hb-ot-layout-gsub-table.hh
src/hb-ot-layout-gsub-table.hh
+9
-0
src/hb-ot-maxp-table.hh
src/hb-ot-maxp-table.hh
+0
-1
src/hb-ot-os2-table.hh
src/hb-ot-os2-table.hh
+0
-1
src/hb-ot-post-table.hh
src/hb-ot-post-table.hh
+0
-1
src/hb-subset.hh
src/hb-subset.hh
+21
-0
未找到文件。
src/hb-open-type.hh
浏览文件 @
d1f29908
...
...
@@ -33,6 +33,7 @@
#include "hb-blob.hh"
#include "hb-face.hh"
#include "hb-machinery.hh"
#include "hb-subset.hh"
namespace
OT
{
...
...
src/hb-ot-cmap-table.hh
浏览文件 @
d1f29908
...
...
@@ -29,7 +29,6 @@
#include "hb-open-type.hh"
#include "hb-set.hh"
#include "hb-subset.hh"
/*
* cmap -- Character to Glyph Index Mapping
...
...
src/hb-ot-hdmx-table.hh
浏览文件 @
d1f29908
...
...
@@ -28,7 +28,6 @@
#define HB_OT_HDMX_TABLE_HH
#include "hb-open-type.hh"
#include "hb-subset.hh"
/*
* hdmx -- Horizontal Device Metrics
...
...
src/hb-ot-hmtx-table.hh
浏览文件 @
d1f29908
...
...
@@ -31,7 +31,6 @@
#include "hb-ot-hhea-table.hh"
#include "hb-ot-os2-table.hh"
#include "hb-ot-var-hvar-table.hh"
#include "hb-subset.hh"
/*
* hmtx -- Horizontal Metrics
...
...
src/hb-ot-layout-gsub-table.hh
浏览文件 @
d1f29908
...
...
@@ -1308,6 +1308,15 @@ struct GSUB : GSUBGPOS
inline
const
SubstLookup
&
get_lookup
(
unsigned
int
i
)
const
{
return
CastR
<
SubstLookup
>
(
GSUBGPOS
::
get_lookup
(
i
));
}
template
<
typename
Serializer
>
inline
bool
subset
(
hb_subset_context_t
<
Serializer
>
*
c
)
{
TRACE_SUBSET
(
this
);
//XXX if (unlikely (!GSUBGPOS::subset (c))) return_trace (false);
return_trace
(
true
);
}
inline
bool
sanitize
(
hb_sanitize_context_t
*
c
)
const
{
TRACE_SANITIZE
(
this
);
...
...
src/hb-ot-maxp-table.hh
浏览文件 @
d1f29908
...
...
@@ -28,7 +28,6 @@
#define HB_OT_MAXP_TABLE_HH
#include "hb-open-type.hh"
#include "hb-subset.hh"
namespace
OT
{
...
...
src/hb-ot-os2-table.hh
浏览文件 @
d1f29908
...
...
@@ -29,7 +29,6 @@
#include "hb-open-type.hh"
#include "hb-ot-os2-unicode-ranges.hh"
#include "hb-subset.hh"
namespace
OT
{
...
...
src/hb-ot-post-table.hh
浏览文件 @
d1f29908
...
...
@@ -28,7 +28,6 @@
#define HB_OT_POST_TABLE_HH
#include "hb-open-type.hh"
#include "hb-subset.hh"
#define HB_STRING_ARRAY_NAME format1_names
#define HB_STRING_ARRAY_LIST "hb-ot-post-macroman.hh"
...
...
src/hb-subset.hh
浏览文件 @
d1f29908
...
...
@@ -32,9 +32,30 @@
#include "hb-subset.h"
#include "hb-machinery.hh"
#include "hb-subset-input.hh"
#include "hb-subset-plan.hh"
template
<
typename
Serializer
>
struct
hb_subset_context_t
:
hb_dispatch_context_t
<
hb_subset_context_t
<
Serializer
>
,
bool
,
HB_DEBUG_SUBSET
>
{
inline
const
char
*
get_name
(
void
)
{
return
"SUBSET"
;
}
template
<
typename
T
>
inline
bool
dispatch
(
const
T
&
obj
)
{
return
obj
.
subset
(
this
);
}
static
bool
default_return_value
(
void
)
{
return
true
;
}
bool
stop_sublookup_iteration
(
bool
r
)
const
{
return
false
;
}
hb_subset_plan_t
*
plan
;
Serializer
*
serializer
;
unsigned
int
debug_depth
;
hb_subset_context_t
(
hb_subset_plan_t
*
plan_
,
Serializer
*
serializer_
)
:
plan
(
plan_
),
serializer
(
serializer_
),
debug_depth
(
0
)
{}
};
#endif
/* HB_SUBSET_HH */
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录