Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
3d54bd12
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看板
提交
3d54bd12
编写于
5月 17, 2009
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[HB] Use OffsetTo<> in more places
上级
9e4d9d7b
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
9 addition
and
7 deletion
+9
-7
src/hb-ot-layout-gdef-private.h
src/hb-ot-layout-gdef-private.h
+5
-7
src/hb-ot-layout-open-private.h
src/hb-ot-layout-open-private.h
+4
-0
未找到文件。
src/hb-ot-layout-gdef-private.h
浏览文件 @
3d54bd12
...
@@ -34,9 +34,7 @@
...
@@ -34,9 +34,7 @@
#define DEFINE_INDIRECT_GLYPH_ARRAY_LOOKUP(Type, name) \
#define DEFINE_INDIRECT_GLYPH_ARRAY_LOOKUP(Type, name) \
inline const Type& name (hb_codepoint_t glyph) { \
inline const Type& name (hb_codepoint_t glyph) { \
const Coverage &c = get_coverage (); \
return (*this)[(this+coverage)(glyph)]; \
unsigned int c_index = c.get_coverage (glyph); \
return (*this)[c_index]; \
}
}
...
@@ -78,10 +76,10 @@ struct AttachList {
...
@@ -78,10 +76,10 @@ struct AttachList {
private:
private:
/* AttachPoint tables, in Coverage Index order */
/* AttachPoint tables, in Coverage Index order */
DEFINE_OFFSET_ARRAY_TYPE
(
AttachPoint
,
attachPoint
,
glyphCount
);
DEFINE_OFFSET_ARRAY_TYPE
(
AttachPoint
,
attachPoint
,
glyphCount
);
DEFINE_GET_ACCESSOR
(
Coverage
,
coverage
,
coverage
);
private:
private:
Offset
coverage
;
/* Offset to Coverage table -- from
OffsetTo
<
Coverage
>
coverage
;
/* Offset to Coverage table -- from
* beginning of AttachList table */
* beginning of AttachList table */
USHORT
glyphCount
;
/* Number of glyphs with attachment
USHORT
glyphCount
;
/* Number of glyphs with attachment
* points */
* points */
...
@@ -199,10 +197,10 @@ struct LigCaretList {
...
@@ -199,10 +197,10 @@ struct LigCaretList {
private:
private:
/* LigGlyph tables, in Coverage Index order */
/* LigGlyph tables, in Coverage Index order */
DEFINE_OFFSET_ARRAY_TYPE
(
LigGlyph
,
ligGlyph
,
ligGlyphCount
);
DEFINE_OFFSET_ARRAY_TYPE
(
LigGlyph
,
ligGlyph
,
ligGlyphCount
);
DEFINE_GET_ACCESSOR
(
Coverage
,
coverage
,
coverage
);
private:
private:
Offset
coverage
;
/* Offset to Coverage table--from
OffsetTo
<
Coverage
>
coverage
;
/* Offset to Coverage table--from
* beginning of LigCaretList table */
* beginning of LigCaretList table */
USHORT
ligGlyphCount
;
/* Number of ligature glyphs */
USHORT
ligGlyphCount
;
/* Number of ligature glyphs */
Offset
ligGlyph
[];
/* Array of offsets to LigGlyph
Offset
ligGlyph
[];
/* Array of offsets to LigGlyph
...
...
src/hb-ot-layout-open-private.h
浏览文件 @
3d54bd12
...
@@ -800,6 +800,10 @@ struct Coverage {
...
@@ -800,6 +800,10 @@ struct Coverage {
}
}
}
}
unsigned
int
operator
()
(
hb_codepoint_t
glyph_id
)
const
{
return
get_coverage
(
glyph_id
);
}
private:
private:
union
{
union
{
USHORT
coverageFormat
;
/* Format identifier */
USHORT
coverageFormat
;
/* Format identifier */
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录