Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
8394a6cb
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看板
未验证
提交
8394a6cb
编写于
12月 05, 2018
作者:
E
Ebrahim Byagowi
提交者:
GitHub
12月 05, 2018
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[os2] Make newer table fields accessible (#1452)
上级
5ab086eb
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
66 addition
and
22 deletion
+66
-22
src/hb-ot-os2-table.hh
src/hb-ot-os2-table.hh
+66
-22
未找到文件。
src/hb-ot-os2-table.hh
浏览文件 @
8394a6cb
...
...
@@ -30,7 +30,7 @@
#include "hb-open-type.hh"
#include "hb-ot-os2-unicode-ranges.hh"
namespace
OT
{
#include "hb-set.hh"
/*
* OS/2 and Windows Metrics
...
...
@@ -38,16 +38,65 @@ namespace OT {
*/
#define HB_OT_TAG_OS2 HB_TAG('O','S','/','2')
struct
OS2
namespace
OT
{
struct
OS2V1Tail
{
enum
{
tableTag
=
HB_OT_TAG_OS2
};
inline
bool
sanitize
(
hb_sanitize_context_t
*
c
)
const
{
TRACE_SANITIZE
(
this
);
return_trace
(
c
->
check_struct
(
this
));
}
public:
HBUINT32
ulCodePageRange1
;
HBUINT32
ulCodePageRange2
;
public:
DEFINE_SIZE_STATIC
(
8
);
};
struct
OS2V2Tail
{
inline
bool
sanitize
(
hb_sanitize_context_t
*
c
)
const
{
TRACE_SANITIZE
(
this
);
return_trace
(
c
->
check_struct
(
this
));
}
public:
HBINT16
sxHeight
;
HBINT16
sCapHeight
;
HBUINT16
usDefaultChar
;
HBUINT16
usBreakChar
;
HBUINT16
usMaxContext
;
public:
DEFINE_SIZE_STATIC
(
10
);
};
struct
OS2V5Tail
{
inline
bool
sanitize
(
hb_sanitize_context_t
*
c
)
const
{
TRACE_SANITIZE
(
this
);
return_trace
(
c
->
check_struct
(
this
));
}
public:
HBUINT16
usLowerOpticalPointSize
;
HBUINT16
usUpperOpticalPointSize
;
public:
DEFINE_SIZE_STATIC
(
4
);
};
struct
OS2
{
enum
{
tableTag
=
HB_OT_TAG_OS2
};
inline
const
OS2V1Tail
&
v1
(
void
)
const
{
return
version
>=
1
?
v1X
:
Null
(
OS2V1Tail
);
}
inline
const
OS2V2Tail
&
v2
(
void
)
const
{
return
version
>=
2
?
v2X
:
Null
(
OS2V2Tail
);
}
inline
const
OS2V5Tail
&
v5
(
void
)
const
{
return
version
>=
5
?
v5X
:
Null
(
OS2V5Tail
);
}
inline
bool
subset
(
hb_subset_plan_t
*
plan
)
const
{
hb_blob_t
*
os2_blob
=
hb_sanitize_context_t
().
reference_table
<
OS2
>
(
plan
->
source
);
...
...
@@ -125,10 +174,18 @@ struct OS2
return
(
font_page_t
)
(
fsSelection
&
0xFF00
);
}
inline
bool
sanitize
(
hb_sanitize_context_t
*
c
)
const
{
TRACE_SANITIZE
(
this
);
if
(
unlikely
(
!
c
->
check_struct
(
this
)))
return_trace
(
false
);
if
(
unlikely
(
version
>=
1
&&
!
v1X
.
sanitize
(
c
)))
return_trace
(
false
);
if
(
unlikely
(
version
>=
2
&&
!
v2X
.
sanitize
(
c
)))
return_trace
(
false
);
if
(
unlikely
(
version
>=
5
&&
!
v5X
.
sanitize
(
c
)))
return_trace
(
false
);
return_trace
(
true
);
}
public:
HBUINT16
version
;
/* Version 0 */
HBINT16
xAvgCharWidth
;
HBUINT16
usWeightClass
;
HBUINT16
usWidthClass
;
...
...
@@ -155,24 +212,11 @@ struct OS2
HBINT16
sTypoLineGap
;
HBUINT16
usWinAscent
;
HBUINT16
usWinDescent
;
/* Version 1 */
//HBUINT32 ulCodePageRange1;
//HBUINT32 ulCodePageRange2;
/* Version 2 */
//HBINT16 sxHeight;
//HBINT16 sCapHeight;
//HBUINT16 usDefaultChar;
//HBUINT16 usBreakChar;
//HBUINT16 usMaxContext;
/* Version 5 */
//HBUINT16 usLowerOpticalPointSize;
//HBUINT16 usUpperOpticalPointSize;
OS2V1Tail
v1X
;
OS2V2Tail
v2X
;
OS2V5Tail
v5X
;
public:
DEFINE_SIZE_
STATIC
(
78
);
DEFINE_SIZE_
MIN
(
78
);
};
}
/* namespace OT */
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录