Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
cd46faf1
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看板
提交
cd46faf1
编写于
4月 04, 2016
作者:
V
vadim
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8151925: Font reference improvements
Reviewed-by: prr, serb, skoivu
上级
2aedf226
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
23 addition
and
14 deletion
+23
-14
src/windows/native/sun/windows/awt_Font.cpp
src/windows/native/sun/windows/awt_Font.cpp
+15
-9
src/windows/native/sun/windows/awt_Font.h
src/windows/native/sun/windows/awt_Font.h
+8
-5
未找到文件。
src/windows/native/sun/windows/awt_Font.cpp
浏览文件 @
cd46faf1
...
...
@@ -256,7 +256,7 @@ AwtFont* AwtFont::Create(JNIEnv *env, jobject font, jint angle, jfloat awScale)
AwtFont
*
awtFont
=
NULL
;
jobjectArray
compFont
=
NULL
;
int
cfnum
;
int
cfnum
=
0
;
try
{
if
(
env
->
EnsureLocalCapacity
(
3
)
<
0
)
...
...
@@ -264,7 +264,9 @@ AwtFont* AwtFont::Create(JNIEnv *env, jobject font, jint angle, jfloat awScale)
if
(
IsMultiFont
(
env
,
font
))
{
compFont
=
GetComponentFonts
(
env
,
font
);
cfnum
=
env
->
GetArrayLength
(
compFont
);
if
(
compFont
!=
NULL
)
{
cfnum
=
env
->
GetArrayLength
(
compFont
);
}
}
else
{
compFont
=
NULL
;
cfnum
=
0
;
...
...
@@ -614,7 +616,9 @@ int AwtFont::getFontDescriptorNumber(JNIEnv *env, jobject font,
if
(
IsMultiFont
(
env
,
font
))
{
array
=
GetComponentFonts
(
env
,
font
);
num
=
env
->
GetArrayLength
(
array
);
if
(
array
!=
NULL
)
{
num
=
env
->
GetArrayLength
(
array
);
}
}
else
{
array
=
NULL
;
num
=
0
;
...
...
@@ -672,14 +676,16 @@ SIZE AwtFont::DrawStringSize_sub(jstring str, HDC hDC,
if
(
IsMultiFont
(
env
,
font
))
{
jobject
peer
=
env
->
CallObjectMethod
(
font
,
AwtFont
::
peerMID
);
array
=
(
jobjectArray
)(
env
->
CallObjectMethod
(
peer
,
AwtFont
::
makeConvertedMultiFontStringMID
,
str
));
DASSERT
(
!
safe_ExceptionOccurred
(
env
));
if
(
peer
!=
NULL
)
{
array
=
(
jobjectArray
)(
env
->
CallObjectMethod
(
peer
,
AwtFont
::
makeConvertedMultiFontStringMID
,
str
));
DASSERT
(
!
safe_ExceptionOccurred
(
env
));
if
(
array
!=
NULL
)
{
arrayLength
=
env
->
GetArrayLength
(
array
);
if
(
array
!=
NULL
)
{
arrayLength
=
env
->
GetArrayLength
(
array
);
}
env
->
DeleteLocalRef
(
peer
);
}
env
->
DeleteLocalRef
(
peer
);
}
else
{
array
=
NULL
;
arrayLength
=
0
;
...
...
src/windows/native/sun/windows/awt_Font.h
浏览文件 @
cd46faf1
...
...
@@ -230,11 +230,14 @@ public:
INLINE
static
jobjectArray
GetComponentFonts
(
JNIEnv
*
env
,
jobject
font
)
{
jobject
platformFont
=
env
->
CallObjectMethod
(
font
,
AwtFont
::
peerMID
);
jobjectArray
result
=
(
jobjectArray
)(
env
->
GetObjectField
(
platformFont
,
AwtFont
::
componentFontsID
));
env
->
DeleteLocalRef
(
platformFont
);
return
result
;
if
(
platformFont
!=
NULL
)
{
jobjectArray
result
=
(
jobjectArray
)(
env
->
GetObjectField
(
platformFont
,
AwtFont
::
componentFontsID
));
env
->
DeleteLocalRef
(
platformFont
);
return
result
;
}
return
NULL
;
}
/*
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录