Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
b1b812c5
D
dragonwell8_jdk
项目概览
openanolis
/
dragonwell8_jdk
通知
4
Star
2
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
dragonwell8_jdk
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
b1b812c5
编写于
4月 07, 2015
作者:
V
vadim
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8074871: Adjust device table handling
Reviewed-by: prr, srl, mschoene
上级
b0312ba4
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
20 addition
and
10 deletion
+20
-10
src/share/native/sun/font/layout/AnchorTables.cpp
src/share/native/sun/font/layout/AnchorTables.cpp
+20
-10
未找到文件。
src/share/native/sun/font/layout/AnchorTables.cpp
浏览文件 @
b1b812c5
...
...
@@ -44,21 +44,27 @@ void AnchorTable::getAnchor(const LETableReference &base, LEGlyphID glyphID, con
case
1
:
{
LEReferenceTo
<
Format1AnchorTable
>
f1
(
base
,
success
);
f1
->
getAnchor
(
f1
,
fontInstance
,
anchor
,
success
);
if
(
LE_SUCCESS
(
success
))
{
f1
->
getAnchor
(
f1
,
fontInstance
,
anchor
,
success
);
}
break
;
}
case
2
:
{
LEReferenceTo
<
Format2AnchorTable
>
f2
(
base
,
success
);
f2
->
getAnchor
(
f2
,
glyphID
,
fontInstance
,
anchor
,
success
);
if
(
LE_SUCCESS
(
success
))
{
f2
->
getAnchor
(
f2
,
glyphID
,
fontInstance
,
anchor
,
success
);
}
break
;
}
case
3
:
{
LEReferenceTo
<
Format3AnchorTable
>
f3
(
base
,
success
);
f3
->
getAnchor
(
f3
,
fontInstance
,
anchor
,
success
);
if
(
LE_SUCCESS
(
success
))
{
f3
->
getAnchor
(
f3
,
fontInstance
,
anchor
,
success
);
}
break
;
}
...
...
@@ -66,7 +72,9 @@ void AnchorTable::getAnchor(const LETableReference &base, LEGlyphID glyphID, con
{
// unknown format: just use x, y coordinate, like format 1...
LEReferenceTo
<
Format1AnchorTable
>
f1
(
base
,
success
);
f1
->
getAnchor
(
f1
,
fontInstance
,
anchor
,
success
);
if
(
LE_SUCCESS
(
success
))
{
f1
->
getAnchor
(
f1
,
fontInstance
,
anchor
,
success
);
}
break
;
}
}
...
...
@@ -112,16 +120,18 @@ void Format3AnchorTable::getAnchor(const LEReferenceTo<Format3AnchorTable> &base
if
(
dtxOffset
!=
0
)
{
LEReferenceTo
<
DeviceTable
>
dt
(
base
,
success
,
dtxOffset
);
le_int16
adjx
=
dt
->
getAdjustment
(
dt
,
(
le_int16
)
fontInstance
->
getXPixelsPerEm
(),
success
);
pixels
.
fX
+=
adjx
;
if
(
LE_SUCCESS
(
success
))
{
le_int16
adjx
=
dt
->
getAdjustment
(
dt
,
(
le_int16
)
fontInstance
->
getXPixelsPerEm
(),
success
);
pixels
.
fX
+=
adjx
;
}
}
if
(
dtyOffset
!=
0
)
{
LEReferenceTo
<
DeviceTable
>
dt
(
base
,
success
,
dtyOffset
);
le_int16
adjy
=
dt
->
getAdjustment
(
dt
,
(
le_int16
)
fontInstance
->
getYPixelsPerEm
(),
success
);
pixels
.
fY
+=
adjy
;
if
(
LE_SUCCESS
(
success
))
{
le_int16
adjy
=
dt
->
getAdjustment
(
dt
,
(
le_int16
)
fontInstance
->
getYPixelsPerEm
(),
success
);
pixels
.
fY
+=
adjy
;
}
}
fontInstance
->
pixelsToUnits
(
pixels
,
anchor
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录