Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
dragonwell8_jdk
提交
09604c93
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看板
提交
09604c93
编写于
7月 16, 2015
作者:
L
lana
浏览文件
操作
浏览文件
下载
差异文件
Merge
上级
c4fa34ae
3403c941
变更
11
展开全部
隐藏空白更改
内联
并排
Showing
11 changed file
with
5088 addition
and
4759 deletion
+5088
-4759
make/data/classlist/classlist.linux
make/data/classlist/classlist.linux
+2498
-2393
make/data/classlist/classlist.windows
make/data/classlist/classlist.windows
+2362
-2271
src/share/classes/sun/awt/datatransfer/DataTransferer.java
src/share/classes/sun/awt/datatransfer/DataTransferer.java
+7
-7
src/share/classes/sun/java2d/opengl/OGLContext.java
src/share/classes/sun/java2d/opengl/OGLContext.java
+7
-0
src/share/native/sun/java2d/opengl/J2D_GL/glext.h
src/share/native/sun/java2d/opengl/J2D_GL/glext.h
+7
-0
src/share/native/sun/java2d/opengl/OGLContext.c
src/share/native/sun/java2d/opengl/OGLContext.c
+4
-0
src/share/native/sun/java2d/opengl/OGLContext.h
src/share/native/sun/java2d/opengl/OGLContext.h
+2
-0
src/share/native/sun/java2d/opengl/OGLFuncs.h
src/share/native/sun/java2d/opengl/OGLFuncs.h
+7
-1
src/share/native/sun/java2d/opengl/OGLTextRenderer.c
src/share/native/sun/java2d/opengl/OGLTextRenderer.c
+133
-72
src/windows/native/sun/security/mscapi/security.cpp
src/windows/native/sun/security/mscapi/security.cpp
+56
-12
test/com/sun/crypto/provider/KeyFactory/TestProviderLeak.java
.../com/sun/crypto/provider/KeyFactory/TestProviderLeak.java
+5
-3
未找到文件。
make/data/classlist/classlist.linux
浏览文件 @
09604c93
此差异已折叠。
点击以展开。
make/data/classlist/classlist.windows
浏览文件 @
09604c93
此差异已折叠。
点击以展开。
src/share/classes/sun/awt/datatransfer/DataTransferer.java
浏览文件 @
09604c93
...
@@ -2905,13 +2905,13 @@ search:
...
@@ -2905,13 +2905,13 @@ search:
return
comp
;
return
comp
;
}
}
//
if (flavor1.isFlavorTextType()) {
if
(
flavor1
.
isFlavorTextType
())
{
//
return 1;
return
1
;
//
}
}
//
//
if (flavor2.isFlavorTextType()) {
if
(
flavor2
.
isFlavorTextType
())
{
//
return -1;
return
-
1
;
//
}
}
// Next, look for application/x-java-* types. Prefer unknown
// Next, look for application/x-java-* types. Prefer unknown
// MIME types because if the user provides his own data flavor,
// MIME types because if the user provides his own data flavor,
...
...
src/share/classes/sun/java2d/opengl/OGLContext.java
浏览文件 @
09604c93
...
@@ -194,6 +194,10 @@ public class OGLContext extends BufferedContext {
...
@@ -194,6 +194,10 @@ public class OGLContext extends BufferedContext {
/** Indicates the presence of the GL_ARB_texture_rectangle extension. */
/** Indicates the presence of the GL_ARB_texture_rectangle extension. */
@Native
@Native
static
final
int
CAPS_EXT_TEXRECT
=
(
FIRST_PRIVATE_CAP
<<
4
);
static
final
int
CAPS_EXT_TEXRECT
=
(
FIRST_PRIVATE_CAP
<<
4
);
/** Indicates the presence of the GL_NV_texture_barrier extension. */
@Native
static
final
int
CAPS_EXT_TEXBARRIER
=
(
FIRST_PRIVATE_CAP
<<
5
);
OGLContextCaps
(
int
caps
,
String
adapterId
)
{
OGLContextCaps
(
int
caps
,
String
adapterId
)
{
super
(
caps
,
adapterId
);
super
(
caps
,
adapterId
);
...
@@ -223,6 +227,9 @@ public class OGLContext extends BufferedContext {
...
@@ -223,6 +227,9 @@ public class OGLContext extends BufferedContext {
if
((
caps
&
CAPS_EXT_TEXRECT
)
!=
0
)
{
if
((
caps
&
CAPS_EXT_TEXRECT
)
!=
0
)
{
buf
.
append
(
"CAPS_EXT_TEXRECT|"
);
buf
.
append
(
"CAPS_EXT_TEXRECT|"
);
}
}
if
((
caps
&
CAPS_EXT_TEXBARRIER
)
!=
0
)
{
buf
.
append
(
"CAPS_EXT_TEXBARRIER|"
);
}
return
buf
.
toString
();
return
buf
.
toString
();
}
}
}
}
...
...
src/share/native/sun/java2d/opengl/J2D_GL/glext.h
浏览文件 @
09604c93
此差异已折叠。
点击以展开。
src/share/native/sun/java2d/opengl/OGLContext.c
浏览文件 @
09604c93
此差异已折叠。
点击以展开。
src/share/native/sun/java2d/opengl/OGLContext.h
浏览文件 @
09604c93
...
@@ -134,6 +134,8 @@ typedef struct {
...
@@ -134,6 +134,8 @@ typedef struct {
sun_java2d_opengl_OGLContext_OGLContextCaps_CAPS_EXT_GRAD_SHADER
sun_java2d_opengl_OGLContext_OGLContextCaps_CAPS_EXT_GRAD_SHADER
#define CAPS_EXT_TEXRECT \
#define CAPS_EXT_TEXRECT \
sun_java2d_opengl_OGLContext_OGLContextCaps_CAPS_EXT_TEXRECT
sun_java2d_opengl_OGLContext_OGLContextCaps_CAPS_EXT_TEXRECT
#define CAPS_EXT_TEXBARRIER \
sun_java2d_opengl_OGLContext_OGLContextCaps_CAPS_EXT_TEXBARRIER
/**
/**
* Evaluates to true if the given capability bitmask is present for the
* Evaluates to true if the given capability bitmask is present for the
...
...
src/share/native/sun/java2d/opengl/OGLFuncs.h
浏览文件 @
09604c93
此差异已折叠。
点击以展开。
src/share/native/sun/java2d/opengl/OGLTextRenderer.c
浏览文件 @
09604c93
此差异已折叠。
点击以展开。
src/windows/native/sun/security/mscapi/security.cpp
浏览文件 @
09604c93
此差异已折叠。
点击以展开。
test/com/sun/crypto/provider/KeyFactory/TestProviderLeak.java
浏览文件 @
09604c93
此差异已折叠。
点击以展开。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录