Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Third Party Harfbuzz
提交
b634beb3
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看板
提交
b634beb3
编写于
5月 20, 2010
作者:
B
Behdad Esfahbod
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix delta scale, again...
上级
40335d45
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
16 addition
and
9 deletion
+16
-9
src/hb-ot-layout-common-private.hh
src/hb-ot-layout-common-private.hh
+8
-0
src/hb-ot-layout-gdef-private.hh
src/hb-ot-layout-gdef-private.hh
+1
-2
src/hb-ot-layout-gpos-private.hh
src/hb-ot-layout-gpos-private.hh
+6
-6
src/hb-ot-layout-private.hh
src/hb-ot-layout-private.hh
+1
-1
未找到文件。
src/hb-ot-layout-common-private.hh
浏览文件 @
b634beb3
...
...
@@ -566,6 +566,14 @@ struct ClassDef
struct
Device
{
/* XXX speed up */
inline
hb_position_t
get_x_delta
(
hb_ot_layout_context_t
*
c
)
const
{
return
c
->
font
->
x_ppem
?
get_delta
(
c
->
font
->
x_ppem
)
*
(
uint64_t
)
c
->
font
->
x_scale
/
c
->
font
->
x_ppem
:
0
;
}
inline
hb_position_t
get_y_delta
(
hb_ot_layout_context_t
*
c
)
const
{
return
c
->
font
->
y_ppem
?
get_delta
(
c
->
font
->
y_ppem
)
*
(
uint64_t
)
c
->
font
->
y_scale
/
c
->
font
->
y_ppem
:
0
;
}
inline
int
get_delta
(
unsigned
int
ppem_size
)
const
{
unsigned
int
f
=
deltaFormat
;
...
...
src/hb-ot-layout-gdef-private.hh
浏览文件 @
b634beb3
...
...
@@ -144,8 +144,7 @@ struct CaretValueFormat3
inline
int
get_caret_value
(
hb_ot_layout_context_t
*
c
,
hb_codepoint_t
glyph_id
HB_UNUSED
)
const
{
/* TODO vertical */
return
c
->
scale_x
(
coordinate
)
+
((
this
+
deviceTable
).
get_delta
(
c
->
font
->
x_ppem
)
*
c
->
font
->
x_scale
);
return
c
->
scale_x
(
coordinate
)
+
((
this
+
deviceTable
).
get_x_delta
(
c
));
}
inline
bool
sanitize
(
hb_sanitize_context_t
*
c
)
{
...
...
src/hb-ot-layout-gpos-private.hh
浏览文件 @
b634beb3
...
...
@@ -112,16 +112,16 @@ struct ValueFormat : USHORT
/* pixel -> fractional pixel */
if
(
format
&
xPlaDevice
)
{
if
(
x_ppem
)
glyph_pos
.
x_offset
+=
(
base
+
get_device
(
values
++
)).
get_
delta
(
x_ppem
)
*
layout
->
font
->
x_scale
;
else
values
++
;
if
(
x_ppem
)
glyph_pos
.
x_offset
+=
(
base
+
get_device
(
values
++
)).
get_
x_delta
(
layout
)
;
else
values
++
;
}
if
(
format
&
yPlaDevice
)
{
if
(
y_ppem
)
glyph_pos
.
y_offset
+=
(
base
+
get_device
(
values
++
)).
get_
delta
(
y_ppem
)
*
layout
->
font
->
y_scale
;
else
values
++
;
if
(
y_ppem
)
glyph_pos
.
y_offset
+=
(
base
+
get_device
(
values
++
)).
get_
y_delta
(
layout
)
;
else
values
++
;
}
if
(
format
&
xAdvDevice
)
{
if
(
x_ppem
)
glyph_pos
.
x_advance
+=
(
base
+
get_device
(
values
++
)).
get_
delta
(
x_ppem
)
*
layout
->
font
->
x_scale
;
else
values
++
;
if
(
x_ppem
)
glyph_pos
.
x_advance
+=
(
base
+
get_device
(
values
++
)).
get_
x_delta
(
layout
)
;
else
values
++
;
}
if
(
format
&
yAdvDevice
)
{
if
(
y_ppem
)
glyph_pos
.
y_advance
+=
(
base
+
get_device
(
values
++
)).
get_
delta
(
y_ppem
)
*
layout
->
font
->
y_scale
;
else
values
++
;
if
(
y_ppem
)
glyph_pos
.
y_advance
+=
(
base
+
get_device
(
values
++
)).
get_
y_delta
(
layout
)
;
else
values
++
;
}
}
...
...
@@ -268,9 +268,9 @@ struct AnchorFormat3
/* pixel -> fractional pixel */
if
(
layout
->
font
->
x_ppem
)
*
x
+=
(
this
+
xDeviceTable
).
get_
delta
(
layout
->
font
->
x_ppem
)
*
layout
->
font
->
x_scale
;
*
x
+=
(
this
+
xDeviceTable
).
get_
x_delta
(
layout
)
;
if
(
layout
->
font
->
y_ppem
)
*
y
+=
(
this
+
yDeviceTable
).
get_
delta
(
layout
->
font
->
y_ppem
)
*
layout
->
font
->
y_scale
;
*
y
+=
(
this
+
yDeviceTable
).
get_
x_delta
(
layout
)
;
}
inline
bool
sanitize
(
hb_sanitize_context_t
*
c
)
{
...
...
src/hb-ot-layout-private.hh
浏览文件 @
b634beb3
...
...
@@ -76,7 +76,7 @@ struct hb_ot_layout_context_t
}
info
;
/* Convert from font-space to user-space */
/* XXX div-by-zero */
/* XXX div-by-zero
/ speed up
*/
inline
hb_position_t
scale_x
(
int16_t
v
)
{
return
(
int64_t
)
this
->
font
->
x_scale
*
v
/
this
->
face
->
head_table
->
unitsPerEm
;
}
inline
hb_position_t
scale_y
(
int16_t
v
)
{
return
(
int64_t
)
this
->
font
->
y_scale
*
v
/
this
->
face
->
head_table
->
unitsPerEm
;
}
};
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录