Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
737436d3
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看板
提交
737436d3
编写于
6月 18, 2019
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Streamline HB_NO_CFF
上级
60653a7a
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
27 addition
and
8 deletion
+27
-8
src/hb-ot-cff1-table.cc
src/hb-ot-cff1-table.cc
+5
-2
src/hb-ot-cff2-table.cc
src/hb-ot-cff2-table.cc
+5
-2
src/hb-subset-cff-common.cc
src/hb-subset-cff-common.cc
+7
-0
src/hb-subset-cff1.cc
src/hb-subset-cff1.cc
+5
-2
src/hb-subset-cff2.cc
src/hb-subset-cff2.cc
+5
-2
未找到文件。
src/hb-ot-cff1-table.cc
浏览文件 @
737436d3
...
@@ -24,11 +24,13 @@
...
@@ -24,11 +24,13 @@
* Adobe Author(s): Michiharu Ariza
* Adobe Author(s): Michiharu Ariza
*/
*/
#include "hb-ot-cff1-table.hh"
#include "hb.hh"
#include "hb-cff1-interp-cs.hh"
#ifndef HB_NO_CFF
#ifndef HB_NO_CFF
#include "hb-ot-cff1-table.hh"
#include "hb-cff1-interp-cs.hh"
using
namespace
CFF
;
using
namespace
CFF
;
/* SID to code */
/* SID to code */
...
@@ -391,4 +393,5 @@ bool OT::cff1::accelerator_t::get_seac_components (hb_codepoint_t glyph, hb_code
...
@@ -391,4 +393,5 @@ bool OT::cff1::accelerator_t::get_seac_components (hb_codepoint_t glyph, hb_code
return
false
;
return
false
;
}
}
#endif
#endif
src/hb-ot-cff2-table.cc
浏览文件 @
737436d3
...
@@ -24,11 +24,13 @@
...
@@ -24,11 +24,13 @@
* Adobe Author(s): Michiharu Ariza
* Adobe Author(s): Michiharu Ariza
*/
*/
#include "hb-ot-cff2-table.hh"
#include "hb.hh"
#include "hb-cff2-interp-cs.hh"
#ifndef HB_NO_OT_FONT_CFF
#ifndef HB_NO_OT_FONT_CFF
#include "hb-ot-cff2-table.hh"
#include "hb-cff2-interp-cs.hh"
using
namespace
CFF
;
using
namespace
CFF
;
struct
extents_param_t
struct
extents_param_t
...
@@ -142,4 +144,5 @@ bool OT::cff2::accelerator_t::get_extents (hb_font_t *font,
...
@@ -142,4 +144,5 @@ bool OT::cff2::accelerator_t::get_extents (hb_font_t *font,
return
true
;
return
true
;
}
}
#endif
#endif
src/hb-subset-cff-common.cc
浏览文件 @
737436d3
...
@@ -24,6 +24,10 @@
...
@@ -24,6 +24,10 @@
* Adobe Author(s): Michiharu Ariza
* Adobe Author(s): Michiharu Ariza
*/
*/
#include "hb.hh"
#ifndef HB_NO_SUBSET_CFF
#include "hb-ot-cff-common.hh"
#include "hb-ot-cff-common.hh"
#include "hb-ot-cff2-table.hh"
#include "hb-ot-cff2-table.hh"
#include "hb-subset-cff-common.hh"
#include "hb-subset-cff-common.hh"
...
@@ -223,3 +227,6 @@ hb_serialize_cff_fdselect (hb_serialize_context_t *c,
...
@@ -223,3 +227,6 @@ hb_serialize_cff_fdselect (hb_serialize_context_t *c,
return_trace
(
false
);
return_trace
(
false
);
}
}
}
}
#endif
src/hb-subset-cff1.cc
浏览文件 @
737436d3
...
@@ -24,6 +24,10 @@
...
@@ -24,6 +24,10 @@
* Adobe Author(s): Michiharu Ariza
* Adobe Author(s): Michiharu Ariza
*/
*/
#include "hb.hh"
#ifndef HB_NO_SUBSET_CFF
#include "hb-open-type.hh"
#include "hb-open-type.hh"
#include "hb-ot-cff1-table.hh"
#include "hb-ot-cff1-table.hh"
#include "hb-set.h"
#include "hb-set.h"
...
@@ -32,8 +36,6 @@
...
@@ -32,8 +36,6 @@
#include "hb-subset-cff-common.hh"
#include "hb-subset-cff-common.hh"
#include "hb-cff1-interp-cs.hh"
#include "hb-cff1-interp-cs.hh"
#ifndef HB_NO_SUBSET_CFF
using
namespace
CFF
;
using
namespace
CFF
;
struct
remap_sid_t
:
remap_t
struct
remap_sid_t
:
remap_t
...
@@ -1121,4 +1123,5 @@ hb_subset_cff1 (hb_subset_plan_t *plan,
...
@@ -1121,4 +1123,5 @@ hb_subset_cff1 (hb_subset_plan_t *plan,
return
result
;
return
result
;
}
}
#endif
#endif
src/hb-subset-cff2.cc
浏览文件 @
737436d3
...
@@ -24,6 +24,10 @@
...
@@ -24,6 +24,10 @@
* Adobe Author(s): Michiharu Ariza
* Adobe Author(s): Michiharu Ariza
*/
*/
#include "hb.hh"
#ifndef HB_NO_SUBSET_CFF
#include "hb-open-type.hh"
#include "hb-open-type.hh"
#include "hb-ot-cff2-table.hh"
#include "hb-ot-cff2-table.hh"
#include "hb-set.h"
#include "hb-set.h"
...
@@ -32,8 +36,6 @@
...
@@ -32,8 +36,6 @@
#include "hb-subset-cff-common.hh"
#include "hb-subset-cff-common.hh"
#include "hb-cff2-interp-cs.hh"
#include "hb-cff2-interp-cs.hh"
#ifndef HB_NO_SUBSET_CFF
using
namespace
CFF
;
using
namespace
CFF
;
struct
cff2_sub_table_offsets_t
:
cff_sub_table_offsets_t
struct
cff2_sub_table_offsets_t
:
cff_sub_table_offsets_t
...
@@ -629,4 +631,5 @@ hb_subset_cff2 (hb_subset_plan_t *plan,
...
@@ -629,4 +631,5 @@ hb_subset_cff2 (hb_subset_plan_t *plan,
return
result
;
return
result
;
}
}
#endif
#endif
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录