Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
14232fa8
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看板
提交
14232fa8
编写于
10月 12, 2019
作者:
P
psadhukhan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
8223158: Docked MacBook cannot start any Java Swing applications
Reviewed-by: prr, serb
上级
18a76662
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
5 addition
and
9 deletion
+5
-9
src/macosx/native/sun/java2d/opengl/CGLGraphicsConfig.m
src/macosx/native/sun/java2d/opengl/CGLGraphicsConfig.m
+5
-9
未找到文件。
src/macosx/native/sun/java2d/opengl/CGLGraphicsConfig.m
浏览文件 @
14232fa8
...
...
@@ -220,7 +220,6 @@ Java_sun_java2d_opengl_CGLGraphicsConfig_getCGLConfigInfo
AWT_ASSERT_APPKIT_THREAD
;
jint
displayID
=
(
jint
)[(
NSNumber
*
)[
argValue
objectAtIndex
:
0
]
intValue
];
jint
pixfmt
=
(
jint
)[(
NSNumber
*
)[
argValue
objectAtIndex
:
1
]
intValue
];
jint
swapInterval
=
(
jint
)[(
NSNumber
*
)[
argValue
objectAtIndex
:
2
]
intValue
];
JNIEnv
*
env
=
[
ThreadUtilities
getJNIEnvUncached
];
[
argValue
removeAllObjects
];
...
...
@@ -229,11 +228,7 @@ Java_sun_java2d_opengl_CGLGraphicsConfig_getCGLConfigInfo
NSAutoreleasePool
*
pool
=
[[
NSAutoreleasePool
alloc
]
init
];
CGOpenGLDisplayMask
glMask
=
(
CGOpenGLDisplayMask
)
pixfmt
;
if
(
sharedContext
==
NULL
)
{
if
(
glMask
==
0
)
{
glMask
=
CGDisplayIDToOpenGLDisplayMask
(
displayID
);
}
NSOpenGLPixelFormatAttribute
attrs
[]
=
{
NSOpenGLPFAAllowOfflineRenderers
,
...
...
@@ -244,14 +239,15 @@ Java_sun_java2d_opengl_CGLGraphicsConfig_getCGLConfigInfo
NSOpenGLPFAColorSize
,
32
,
NSOpenGLPFAAlphaSize
,
8
,
NSOpenGLPFADepthSize
,
16
,
NSOpenGLPFAScreenMask
,
glMask
,
0
};
sharedPixelFormat
=
[[
NSOpenGLPixelFormat
alloc
]
initWithAttributes
:
attrs
];
if
(
sharedPixelFormat
==
nil
)
{
J2dRlsTraceLn
(
J2D_TRACE_ERROR
,
"CGLGraphicsConfig_getCGLConfigInfo: shared NSOpenGLPixelFormat is NULL"
);
J2dRlsTraceLn
(
J2D_TRACE_ERROR
,
"CGLGraphicsConfig_getCGLConfigInfo: shared NSOpenGLPixelFormat is NULL"
);
[
argValue
addObject
:
[
NSNumber
numberWithLong
:
0L
]];
return
;
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录